Skip to content

Commit e042aa3

Browse files
committed
fixed lexer warning
1 parent 2ec28ed commit e042aa3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

solid/libs/py_scadparser/scad_tokens.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@
5252
t_GREATER_OR_EQUAL = ">="
5353
t_LESS_OR_EQUAL = "<="
5454
t_NOT_EQUAL = "!="
55-
t_AND = "\&\&"
56-
t_OR = "\|\|"
55+
t_AND = r"\&\&"
56+
t_OR = r"\|\|"
5757

5858
t_FILENAME = r'<[a-zA-Z_0-9/\\\.-]*>'
5959

0 commit comments

Comments
 (0)