PEP8 fixes in compiler
This commit is contained in:
parent
277469dfe1
commit
ddded5e8bd
@ -2020,14 +2020,14 @@ class HyASTCompiler(object):
|
||||
else:
|
||||
with_kwargs = True
|
||||
|
||||
args, ret, keywords, oldpy_starargs, oldpy_kwargs = self._compile_collect(
|
||||
args, ret, keywords, oldpy_star, oldpy_kw = self._compile_collect(
|
||||
expression[1:], with_kwargs, oldpy_unpack=True)
|
||||
|
||||
ret += ast.Call(func=func.expr,
|
||||
args=args,
|
||||
keywords=keywords,
|
||||
starargs=oldpy_starargs,
|
||||
kwargs=oldpy_kwargs,
|
||||
starargs=oldpy_star,
|
||||
kwargs=oldpy_kw,
|
||||
lineno=expression.start_line,
|
||||
col_offset=expression.start_column)
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user