diff options
Diffstat (limited to 'klippy/kinematics/winch.py')
-rw-r--r-- | klippy/kinematics/winch.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/klippy/kinematics/winch.py b/klippy/kinematics/winch.py index c69d1b6d..0003826b 100644 --- a/klippy/kinematics/winch.py +++ b/klippy/kinematics/winch.py @@ -26,7 +26,7 @@ class WinchKinematics: acoords = list(zip(*self.anchors)) self.axes_min = toolhead.Coord(*[min(a) for a in acoords], e=0.) self.axes_max = toolhead.Coord(*[max(a) for a in acoords], e=0.) - self.set_position([0., 0., 0.], ()) + self.set_position([0., 0., 0.], "") def get_steppers(self): return list(self.steppers) def calc_position(self, stepper_positions): |