From 4c7ce6383db313aa5b725a90175f53ef6b299e80 Mon Sep 17 00:00:00 2001 From: XANTRONIX Development Date: Tue, 2 Jan 2024 21:51:41 -0500 Subject: [PATCH] Fix type hinting --- py/hexagram/path.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/py/hexagram/path.py b/py/hexagram/path.py index d67bfb0..3a25265 100644 --- a/py/hexagram/path.py +++ b/py/hexagram/path.py @@ -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