Skip to content

Commit 8ca307a

Browse files
committedDec 3, 2024
Adopted the change of PR #52 - allow ( and ) as first character in a NAME
1 parent 5d5ee0d commit 8ca307a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎elmclient/_queryparser.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -553,7 +553,7 @@ def scoped_term(self, s):
553553
554554
URI_REF_ESC : /<https?:.*>/
555555
NAME : /[a-zA-Z0-9_][^, {}]*/
556-
SPACYNAME : /[a-zA-Z0-9_][^']*/
556+
SPACYNAME : /[a-zA-Z0-9_()][^']*/
557557
"""
558558

559559
_orderby_grammar = r"""

0 commit comments

Comments
 (0)
Please sign in to comment.