Path 1: 15 calls (0.94)

1def open(self) -> None:
2        py_version = self.linter.config.py_version
3        self._py38_plus = py_version >= (3, 8)
4        self._max_length: int = (
5            self.linter.config.max_line_length_suggestions
6            or self.linter.config.max_line_length
7        )
            

Path 2: 1 calls (0.06)

1def open(self) -> None:
2        py_version = self.linter.config.py_version
3        self._py38_plus = py_version >= (3, 8)
4        self._max_length: int = (
5            self.linter.config.max_line_length_suggestions
6            or self.linter.config.max_line_length
7        )