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
When checking {"a": any} mypy represents it as a tuple of key and value, which is kinda what it is.
Yeah, that does make sense that mypy would, as an implementation detail, model this as a tuple. But in reality it's not, so the error message here doesn't make Any sense.
tuple[str, Any]
The text was updated successfully, but these errors were encountered: