Skip to content

Commit 562d920

Browse files
committed
autopep8
1 parent b4f0e3f commit 562d920

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

unpythonic/syntax/tailtools.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ def transform_args(tree):
196196
nd = len(tree.args.defaults) # defaults apply to n last args
197197
if j == na - nd - 1: # last one that has no default
198198
tree.args.defaults.insert(0, hq[identity])
199-
else: # "cc" in kwonlynames:
199+
else: # "cc" in kwonlynames:
200200
j = kwonlynames.index("cc")
201201
if tree.args.kw_defaults[j] is None: # not already set
202202
tree.args.kw_defaults[j] = hq[identity]
@@ -363,7 +363,7 @@ def prepare_call(tree):
363363
if tree:
364364
tree.keywords = [keyword(arg="cc", value=q[name[contname]])] + tree.keywords
365365
else: # no call means proceed to cont directly, with args set to None
366-
tree = q[name[contname](*([None]*u[len(targets)]), cc=name["cc"])]
366+
tree = q[name[contname](*([None] * u[len(targets)]), cc=name["cc"])]
367367
return tree
368368
thecall = prepare_call(thecall)
369369
if condition:

0 commit comments

Comments
 (0)