Method: pylint.checkers.base.basic_checker.BasicChecker.open
Calls: 1018, Exceptions: 0, Paths: 1Back
Path 1: 1018 calls (1.0)
1def open(self) -> None:
2 """Initialize visit variables and statistics."""
3 py_version = self.linter.config.py_version
4 self._py38_plus = py_version >= (3, 8)
5 self._tryfinallys = []
6 self.linter.stats.reset_node_count()