Style fix

This commit is contained in:
Thomas Kluyver 2015-07-16 11:04:36 -07:00 committed by Bruno Oliveira
parent 6719a818e7
commit e227950b06
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):
ast_Call = ast.Call
else :
ast_Call = lambda a,b,c : ast.Call(a, b, c, None, None)
else:
ast_Call = lambda a,b,c: ast.Call(a, b, c, None, None)
class AssertionRewritingHook(object):