Don't treat wide numbers as numbers
This commit is contained in:
parent
13f21c6d11
commit
c5511c7c0c
|
@ -90,7 +90,7 @@ def get_symbols(line: str) -> (str, list[str]):
|
||||||
x = i
|
x = i
|
||||||
i += 2
|
i += 2
|
||||||
while i < len(line):
|
while i < len(line):
|
||||||
if line[i].isdigit():
|
if line[i] >= '0' and line[i] <= '9':
|
||||||
i += 1
|
i += 1
|
||||||
continue
|
continue
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue