Skip to content

Commit a1633b0

Browse files
authored
Fix typing
1 parent 25272fd commit a1633b0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55

66
class PylintIncompatiblePythonError(Exception):
7-
def __init__(self, version_info: sys._version_info) -> None:
7+
def __init__(self, version_info: "sys._version_info") -> None:
88
super().__init__(
99
"The last version compatible with Python <= 3.6.2 is pylint '2.9.3'. "
1010
f"You're using {'.'.join(map(str, version_info[:3]))}. "

0 commit comments

Comments
 (0)