Unbound type variables can leak out of type inference errors #7101
Labels
bug
mypy got something wrong
priority-0-high
semantic-analyzer
Problems that happen during semantic analysis
topic-type-variables
This was introduced by #7079.
This file
produces these errors now.
Previously it produced
Probably the correct revealed type would be
collections.defaultdict[Any, Any]
.This only shows up in a small handful of places at dropbox, though, and they can all be fixed by changing the
# type: ignore
to a# type: Any
(or something better...)The text was updated successfully, but these errors were encountered: