Skip to content

Commit 7603614

Browse files
Fix got "Tuple[int, ...]", expected "Tuple[int]"
1 parent 0f5b988 commit 7603614

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

astroid/test_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ def require_version(minver: str = "0.0.0", maxver: str = "4.0.0") -> Callable:
2929
Skip the test if older.
3030
"""
3131

32-
def parse(python_version: str) -> Tuple[int]:
32+
def parse(python_version: str) -> Tuple[int, ...]:
3333
try:
3434
return tuple(int(v) for v in python_version.split("."))
3535
except ValueError as e:

0 commit comments

Comments
 (0)