Commit 71ce8970 authored by Benjamin Peterson's avatar Benjamin Peterson

fix indentation

parent e451ec39
......@@ -738,7 +738,7 @@ class ASTValidatorTests(unittest.TestCase):
l = ast.Name("x", ast.Load())
s = ast.Name("y", ast.Store())
for args in (s, l, l), (l, s, l), (l, l, s):
self.expr(ast.IfExp(*args), "must have Load context")
self.expr(ast.IfExp(*args), "must have Load context")
def test_dict(self):
d = ast.Dict([], [ast.Name("x", ast.Load())])
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment