Skip over CR, LF, tabs

This commit is contained in:
XANTRONIX Development 2024-01-01 23:20:19 -05:00
parent e3335ace69
commit f33b66c8f0

View file

@ -68,6 +68,9 @@ class Path():
state = State.NONE
for ch in text:
if ch == '\r' or ch == '\n' or ch == '\t':
continue
c = ord(ch)
if state is State.NONE: