diff --git a/_pytest/assertion/rewrite.py b/_pytest/assertion/rewrite.py index ff41e1129..6dbbd4f49 100644 --- a/_pytest/assertion/rewrite.py +++ b/_pytest/assertion/rewrite.py @@ -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):