Skip to content

Commit b1f4a1e

Browse files
committed
Fix unknownParameterType error
1 parent 9f2e4b1 commit b1f4a1e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

jsonschema_lexer/_lexer.py

Lines changed: 2 additions & 2 deletions
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),
187-
) # type: ignore[reportUnknownParameterType]
186+
super().get_tokens_unprocessed(text), # type: ignore[reportUnknownParameterType]
187+
)
188188
yield from self.map_tokens_by_schema(json_tokens)

0 commit comments

Comments
 (0)