aboutsummaryrefslogtreecommitdiffstats
path: root/klippy/kinematics/rotary_delta.py
diff options
context:
space:
mode:
authorKevin O'Connor <kevin@koconnor.net>2020-04-20 22:36:00 -0400
committerKevin O'Connor <kevin@koconnor.net>2020-04-20 22:36:00 -0400
commit9e8c4770eda8d09c865ed7fc7296df57a713597c (patch)
tree1307bfecf02fd8ee07ad282b8c310fa21fe276a7 /klippy/kinematics/rotary_delta.py
parent0b05a38361ea9455b3bed736a4d8d3af760da907 (diff)
downloadkutter-9e8c4770eda8d09c865ed7fc7296df57a713597c.tar.gz
kutter-9e8c4770eda8d09c865ed7fc7296df57a713597c.tar.xz
kutter-9e8c4770eda8d09c865ed7fc7296df57a713597c.zip
rotary_delta: The get_status() method should take eventtime parameter
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'klippy/kinematics/rotary_delta.py')
-rw-r--r--klippy/kinematics/rotary_delta.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/klippy/kinematics/rotary_delta.py b/klippy/kinematics/rotary_delta.py
index a7ab940f..415a2e7f 100644
--- a/klippy/kinematics/rotary_delta.py
+++ b/klippy/kinematics/rotary_delta.py
@@ -121,7 +121,7 @@ class RotaryDeltaKinematics:
move.limit_speed(self.max_z_velocity, move.accel)
limit_xy2 = -1.
self.limit_xy2 = limit_xy2
- def get_status(self):
+ def get_status(self, eventtime):
return {'homed_axes': '' if self.need_home else 'XYZ'}
def get_calibration(self):
return self.calibration