Skip to content

Commit

Permalink
fix: ruff
Browse files Browse the repository at this point in the history
  • Loading branch information
lvjonok committed Nov 16, 2024
1 parent 192eaa0 commit 6b634fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gcode.py
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ def parseGCode(lines):
args, comment = line.split(";")[:2]
args = args.split(" ")
if line.endswith("rotation"): # we have either rotation or incline
args, comment = line.split(";")[1:3] # we remove first colon
args, comment = line.split(";")[1:3] # we remove first colon
args = args.split(" ")
printer.finishLayer()
# if any(a.lower().startswith('u') for a in args): # rotation
Expand Down

0 comments on commit 6b634fb

Please sign in to comment.