fix: regex escape characters

This commit is contained in:
Thomas Mello 2022-09-07 18:05:16 +03:00
parent 1231fab8a4
commit 388a765162

View File

@ -450,9 +450,9 @@ prompt_parser = re.compile("""
(?: # non-capture group
:+ # match one or more ':' characters
(?P<weight> # capture group for 'weight'
-?\d+(?:\.\d+)? # match positive or negative decimal number
-?\\d+(?:\\.\\d+)? # match positive or negative decimal number
)? # end weight capture group, make optional
\s* # strip spaces after weight
\\s* # strip spaces after weight
| # OR
$ # else, if no ':' then match end of line
) # end non-capture group