-
-
Notifications
You must be signed in to change notification settings - Fork 2.8k
New issue
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
Type errors using (x, _, _) = (1, 2, "3") #1649
Comments
It's common enough to flag a few variable names as special as targets: |
This is a duplicate of #465. |
Yes, it looks like this is a duplicate. I think it makes sense to only keep one of them open. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
It's a common pattern to use assignment to
_
in code to ignore variables that aren't used, and mypy doesn't support that:/home/tabbott/foo.py:2: error: Incompatible types in assignment (expression has type "str", variable has type "int")
In my real code the usage looks more like this:
Not sure whether the right answer is to change the code, but I think I'd flag this as an interesting case that may be somewhat common.
The text was updated successfully, but these errors were encountered: