fix: correct ESCAPABLE_CHARS in query_lang tokenizer (#1334)

This commit is contained in:
Jann Stute
2026-05-10 16:47:21 +02:00
committed by GitHub

View File

@@ -61,7 +61,7 @@ class Tokenizer:
pos: int
current_char: str | None
ESCAPABLE_CHARS = ["\\", '"', '"']
ESCAPABLE_CHARS = ["\\", '"', "'"]
NOT_IN_ULITERAL = [":", " ", "[", "]", "(", ")", "=", ","]
def __init__(self, text: str) -> None: