We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
PEP 484 won't have Any(x), so we should remove it from mypy (python/typing#33). Using cast(Any, x) is equivalent anyway and almost as convenient.
Any(x)
cast(Any, x)
The text was updated successfully, but these errors were encountered:
dcad691
No branches or pull requests
PEP 484 won't have
Any(x)
, so we should remove it from mypy (python/typing#33). Usingcast(Any, x)
is equivalent anyway and almost as convenient.The text was updated successfully, but these errors were encountered: