diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2020-04-20 22:36:00 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2020-04-20 22:36:00 -0400 |
commit | 9e8c4770eda8d09c865ed7fc7296df57a713597c (patch) | |
tree | 1307bfecf02fd8ee07ad282b8c310fa21fe276a7 /klippy/kinematics/rotary_delta.py | |
parent | 0b05a38361ea9455b3bed736a4d8d3af760da907 (diff) | |
download | kutter-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.py | 2 |
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 |