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? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
I replaced Tuple[int, ...] with tuple[int, ...] generic alias during upgrading my codebase to Python 3.9.
Tuple[int, ...]
tuple[int, ...]
mypy 9.10 raises error: Unexpected "..." [misc] error for this line.
error: Unexpected "..." [misc]
What I've missed?
The reproducer is trivial:
ID = tuple[int, ...]
The text was updated successfully, but these errors were encountered:
Thanks, this has been fixed on master for a long time.
Sorry, something went wrong.
Nice! Is there any estimation for the new release?
Hopefully soon, but it's out of my hands. You can subscribe to #11158
Thanks!
No branches or pull requests
I replaced
Tuple[int, ...]
withtuple[int, ...]
generic alias during upgrading my codebase to Python 3.9.mypy 9.10 raises
error: Unexpected "..." [misc]
error for this line.What I've missed?
The reproducer is trivial:
The text was updated successfully, but these errors were encountered: