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
Analysis for this code causes the three errors (mypy 0.790):
$ mypy mypytest.py
mypytest.py:8: error: Incompatible return value type (got "Tuple[int, int]", expected "Tuple[int, int, int, int]")
mypytest.py:10: error: Tuple index out of range
mypytest.py:11: error: Incompatible return value type (got "Tuple[int, int, Any, Any]", expected "Tuple[int, int]")
Found 3 errors in 1 file (checked 1 source file)
I think this is a glitch, but is there a technical reason for not being able to distinguish between these two types of tuples?
The text was updated successfully, but these errors were encountered:
Bug Report
Analysis for this code causes the three errors (mypy 0.790):
I think this is a glitch, but is there a technical reason for not being able to distinguish between these two types of tuples?
The text was updated successfully, but these errors were encountered: