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 58e5182 commit 9a73bc5Copy full SHA for 9a73bc5
mypy/constant_fold.py
@@ -248,7 +248,7 @@ def constant_fold_call_expr(
248
elif arg_kind == ArgKind.ARG_STAR:
249
call_args.extend(folded_arg) # type: ignore [arg-type]
250
elif arg_kind == ArgKind.ARG_STAR2:
251
- call_kwargs.update(folded_arg) # type: ignore [arg-type, call-overload]
+ call_kwargs.update(folded_arg) # type: ignore [arg-type]
252
except:
253
return None
254
0 commit comments