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
Fix joining of fixed tuples with mismatching lengths
For example:
Tuple[bool, int] + Tuple[bool] becomes Tuple[int, ...]
Previously Mypy simply punted and returned `object`.
The handling of fixed tuple + variadic tuple will be implemented
separately.
0 commit comments