From 1d58e5258452e6dd5f60799cf6f1ed017bbd7dab Mon Sep 17 00:00:00 2001 From: Paul Tagliamonte Date: Wed, 1 Jan 2014 19:12:17 -0500 Subject: [PATCH] Flake8 style fix. --- hy/compiler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hy/compiler.py b/hy/compiler.py index fd45eb1..0a7071c 100644 --- a/hy/compiler.py +++ b/hy/compiler.py @@ -1703,7 +1703,7 @@ class HyASTCompiler(object): # Python 3.4+ requres that args are an ast.arg object, rather # than an ast.Name or bare string. args = [ast.arg(arg=ast_str(x), - annotation=None, ### Fix me! + annotation=None, # Fix me! lineno=x.start_line, col_offset=x.start_column) for x in args]