Skip to content

Commit 9a73bc5

Browse files
fix mypy err
1 parent 58e5182 commit 9a73bc5

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
@@ -248,7 +248,7 @@ def constant_fold_call_expr(
248248
elif arg_kind == ArgKind.ARG_STAR:
249249
call_args.extend(folded_arg) # type: ignore [arg-type]
250250
elif arg_kind == ArgKind.ARG_STAR2:
251-
call_kwargs.update(folded_arg) # type: ignore [arg-type, call-overload]
251+
call_kwargs.update(folded_arg) # type: ignore [arg-type]
252252
except:
253253
return None
254254

0 commit comments

Comments
 (0)