We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 73c7d11 commit 9156092Copy full SHA for 9156092
mypy/constant_fold.py
@@ -280,6 +280,6 @@ def constant_fold_call_expr(
280
arg_val = constant_fold_expr(arg, cur_mod_id)
281
if arg_val is None:
282
return None
283
- folded_strings.append(arg_val)
284
- return folded_callee.format(*folded_strings)
+ folded_args.append(arg_val)
+ return folded_callee.format(*folded_args)
285
0 commit comments