Method: pylint.extensions.private_import.PrivateImportChecker.__init__
Calls: 9, Exceptions: 0, Paths: 1Back
Path 1: 9 calls (1.0)
UnittestLinter (5) PyLinter (4)
1def __init__(self, linter: PyLinter) -> None:
2 BaseChecker.__init__(self, linter)
3
4 # A mapping of private names used as a type annotation to whether it is an acceptable import
5 self.all_used_type_annotations: dict[str, bool] = {}
6 self.populated_annotations = False