Skip to content

Commit af7f613

Browse files
authored
range_helper.py: Fix __re_dbl
1 parent 8023bed commit af7f613

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scan/table/range_helper.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
# Regular expression for a number,
1010
# captured as one group,
1111
# padded by space
12-
__re_dbl = " *([-+]?[0-9]+\.?[0-9]*(?:[eE][-+]?[0-9]+)?) *"
12+
__re_dbl = r" *([-+]?[0-9]+\.?[0-9]*(?:[eE][-+]?[0-9]+)?) *"
1313

1414
# Regular expression for the range([start,] stop[, step]) command,
1515
# capturing the start, end and step arguments

0 commit comments

Comments
 (0)