Method: pylint.checkers.unsupported_version.UnsupportedVersionChecker.open
Calls: 1012, Exceptions: 0, Paths: 1Back
Path 1: 1012 calls (1.0)
1def open(self) -> None:
2 """Initialize visit variables and statistics."""
3 py_version = self.linter.config.py_version
4 self._py36_plus = py_version >= (3, 6)
5 self._py38_plus = py_version >= (3, 8)