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
if False: bar = "a" print(bar)
Mypy passes successfully on this code. Python obviously errors with NameError: name 'bar' is not defined at runtime.
NameError: name 'bar' is not defined
Mypy should ensure that a variable when referenced has been defined in all possible paths of execution up to that point.
The text was updated successfully, but these errors were encountered:
This is related to #2400 and #686
Sorry, something went wrong.
Thanks
No branches or pull requests
Mypy passes successfully on this code. Python obviously errors with
NameError: name 'bar' is not defined
at runtime.Mypy should ensure that a variable when referenced has been defined in all possible paths of execution up to that point.
The text was updated successfully, but these errors were encountered: