Skip to content

Commit 9eba839

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent b1f4a1e commit 9eba839

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jsonschema_lexer/_lexer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,6 +183,6 @@ def get_tokens_unprocessed(self, text: str): # type: ignore[reportUnknownParame
183183
Add token classes to it according to JSON Schema.
184184
"""
185185
json_tokens: list[tuple[int, Any, str]] = list(
186-
super().get_tokens_unprocessed(text), # type: ignore[reportUnknownParameterType]
186+
super().get_tokens_unprocessed(text), # type: ignore[reportUnknownParameterType]
187187
)
188188
yield from self.map_tokens_by_schema(json_tokens)

0 commit comments

Comments
 (0)