Skip to content

Commit ffe39b4

Browse files
committed
Improve type hinting
1 parent 860c676 commit ffe39b4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

gcodeparser/gcode_parser.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
@dataclass
88
class GcodeLine:
99
command: Union[Tuple[str, int], Tuple[str, None]]
10-
params: Dict[str, float]
10+
params: Dict[str, Union[float, str]]
1111
comment: str
1212

1313
def __post_init__(self):

0 commit comments

Comments
 (0)