Fix type hinting

This commit is contained in:
XANTRONIX Development 2024-01-02 21:51:41 -05:00
parent 7b4e8c4330
commit 4c7ce6383d

View file

@ -65,7 +65,7 @@ class Path():
return (c >= ord('0') and c <= ord('9'))
@staticmethod
def parse(text: str) -> list:
def parse(text: str) -> Path:
commands = list()
command = PathCommand()
state = State.NONE