Skip to content

Commit 5cb8cb2

Browse files
committed
fix remap/gettings-started config: speed is a tuple, not a float
1 parent 3a9a9e4 commit 5cb8cb2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • configs/sim/axis/remap/getting-started/python

configs/sim/axis/remap/getting-started/python/remap.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ def involute(self, **words):
4545
self.set_errormsg("feedrate > 0 required")
4646
return INTERP_ERROR
4747

48-
if equal(self.speed,0.0):
48+
if equal(self.speed[0], 0.0):
4949
self.set_errormsg("spindle speed > 0 required")
5050
return INTERP_ERROR
5151

0 commit comments

Comments
 (0)