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
This may be not as easy as it looks, mypy's inference is already exponentially complex, see #3796 so we need to be careful not to slow it down even more. Potentially we can special case built-in collections and their "literals".
The following example makes it clear:
I expected my_dict to have type
Dict[str, List[int]]
rather thanDict[str, object]
.Possibly related to #1055.
The text was updated successfully, but these errors were encountered: