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 was partially fixed by #3147, now the error message correctly mentions defaultdict[str, int] instead of just dict. However, still the message disappears if redundant collections import is removed.
With this code:
mypy shows a strange error (note
"dict"
instead of"DefaultDict"
):Moreover, if I remove the (redundant) import from
collections
, then mypy passes without errors.The text was updated successfully, but these errors were encountered: