Style fix

This commit is contained in:
Thomas Kluyver 2015-07-16 11:04:36 -07:00
parent 077f0d3d66
commit 4462b83258
1 changed files with 2 additions and 2 deletions

View File

@ -37,8 +37,8 @@ ASCII_IS_DEFAULT_ENCODING = sys.version_info[0] < 3
if sys.version_info >= (3,5): if sys.version_info >= (3,5):
ast_Call = ast.Call ast_Call = ast.Call
else : else:
ast_Call = lambda a,b,c : ast.Call(a, b, c, None, None) ast_Call = lambda a,b,c: ast.Call(a, b, c, None, None)
class AssertionRewritingHook(object): class AssertionRewritingHook(object):