Method: pylint.checkers.strings.StringConstantChecker.__init__
Calls: 1137, Exceptions: 0, Paths: 1Back
Path 1: 1137 calls (1.0)
PyLinter (1137)
1def __init__(self, linter: PyLinter) -> None:
2 super().__init__(linter)
3 self.string_tokens: dict[
4 tuple[int, int], tuple[str, tokenize.TokenInfo | None]
5 ] = {}
6 """Token position -> (token value, next token)."""