Skip to content

Commit 4f3726f

Browse files
authored
drop unsused fstring in lexer.py (#21)
1 parent 4eb002f commit 4f3726f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/qql/lexer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ def tokenize(self, query: str) -> list[Token]:
213213
tokens.append(Token(TokenKind.NOT_EQUALS, "!=", i))
214214
i += 2
215215
else:
216-
raise QQLSyntaxError(f"Unexpected character '!'", i)
216+
raise QQLSyntaxError("Unexpected character '!'", i)
217217
elif ch == ">":
218218
if i + 1 < n and query[i + 1] == "=":
219219
tokens.append(Token(TokenKind.GTE, ">=", i))

0 commit comments

Comments
 (0)