Skip to content

Commit 6b634fb

Browse files
committed
fix: ruff
1 parent 192eaa0 commit 6b634fb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/gcode.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ def parseGCode(lines):
283283
args, comment = line.split(";")[:2]
284284
args = args.split(" ")
285285
if line.endswith("rotation"): # we have either rotation or incline
286-
args, comment = line.split(";")[1:3] # we remove first colon
286+
args, comment = line.split(";")[1:3] # we remove first colon
287287
args = args.split(" ")
288288
printer.finishLayer()
289289
# if any(a.lower().startswith('u') for a in args): # rotation

0 commit comments

Comments
 (0)