Skip to content

Commit 06f3553

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent d22b4ed commit 06f3553

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mypy/constant_fold.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ def constant_fold_call_expr(
240240
for folded_arg, arg_kind, arg_name in zip(args, expr.arg_kinds, expr.arg_names):
241241
try:
242242
if arg_kind == ArgKind.ARG_POS:
243-
call_args.append(folded_arg) #
243+
call_args.append(folded_arg) #
244244
elif arg_kind == ArgKind.ARG_NAMED:
245245
call_kwargs[arg_name] = folded_arg
246246
elif arg_kind == ArgKind.ARG_STAR:

0 commit comments

Comments
 (0)