Flake8 style fix.

This commit is contained in:
Paul Tagliamonte 2014-01-01 19:12:17 -05:00
parent f28bf41f8d
commit 1d58e52584
1 changed files with 1 additions and 1 deletions

View File

@ -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]