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
Actually, maybe the first example should not be valid, since we can't check that there are no multiple argument values due to not knowing the length of the *args list.
We can revisit this later if it turns out to be problematic.
The following code is not accepted by the type checker, even though it's arguably valid:
The type checker should probably not complain about multiple argument values if one of the values is from a *arg.
The limitation can be worked around by replacing keyword args with dict args (**args).
The text was updated successfully, but these errors were encountered: