We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 47ff5ca commit b1125c5Copy full SHA for b1125c5
jsonschema_lexer/_lexer.py
@@ -83,7 +83,8 @@ def _find_key_value_from_json(
83
index: int,
84
):
85
return next(
86
- (t[2] for t in tokens[index:] if t[1] is Token.String.Double), None
+ (t[2] for t in tokens[index:]
87
+ if t[1] is Token.String.Double), None,
88
)
89
90
def _get_nearest_valid_dialect(
0 commit comments