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)."""