Created
October 2, 2022 20:07
-
-
Save ahmedbesbes/d492a66ef9aaa38f17f4e80ee20aa5b2 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from typing import Tuple | |
# Fails the type check ❌ | |
t: Tuple[int] = [1, 2, 3] | |
# Ok ✅ | |
t: Tuple[int, int, int] = [1, 2, 3] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment