We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4eb002f commit 4f3726fCopy full SHA for 4f3726f
1 file changed
src/qql/lexer.py
@@ -213,7 +213,7 @@ def tokenize(self, query: str) -> list[Token]:
213
tokens.append(Token(TokenKind.NOT_EQUALS, "!=", i))
214
i += 2
215
else:
216
- raise QQLSyntaxError(f"Unexpected character '!'", i)
+ raise QQLSyntaxError("Unexpected character '!'", i)
217
elif ch == ">":
218
if i + 1 < n and query[i + 1] == "=":
219
tokens.append(Token(TokenKind.GTE, ">=", i))
0 commit comments