Skip to content

Commit

Permalink
Fix typing
Browse files Browse the repository at this point in the history
  • Loading branch information
cdce8p authored Oct 17, 2021
1 parent 25272fd commit a1633b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@


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

0 comments on commit a1633b0

Please sign in to comment.