File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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 :
You can’t perform that action at this time.
0 commit comments