You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$ mypy tmp_with_signature.py
tmp_with_signature.py:6: error: Too many arguments for "xyz"
Found 1 error in 1 file (checked 1 source file)
It is strange to me that the error is only reported when a has an annotation, which seems unrelated to the number keyword arguments being passed to xyz. If I change each instance of **kwargs to *args, the error goes away. Seems like a bug...