Path 1: 35 calls (1.0)

PyLinter (35)

1def __init__(self, linter: PyLinter) -> None:
2        """Initialize checker instance."""
3        super().__init__(linter=linter)
4        self._found_broken_callable_location: bool = False
5        self._alias_name_collisions: set[str] = set()
6        self._deprecated_typing_alias_msgs: list[DeprecatedTypingAliasMsg] = []
7        self._consider_using_alias_msgs: list[DeprecatedTypingAliasMsg] = []