diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2017-09-08 19:34:30 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2017-09-08 19:34:30 -0400 |
commit | dba488f30a10f0df1798d7e5c6b8d028d371b6ba (patch) | |
tree | f180c8424eba5facbf3e73e6f5066e93410f27a3 | |
parent | d618affd63668459c4c00588ecc15905a81ef079 (diff) | |
download | kutter-dba488f30a10f0df1798d7e5c6b8d028d371b6ba.tar.gz kutter-dba488f30a10f0df1798d7e5c6b8d028d371b6ba.tar.xz kutter-dba488f30a10f0df1798d7e5c6b8d028d371b6ba.zip |
extruder: Remove unused set_max_jerk() call
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
-rw-r--r-- | klippy/extruder.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/klippy/extruder.py b/klippy/extruder.py index 44315f9b..d6eff720 100644 --- a/klippy/extruder.py +++ b/klippy/extruder.py @@ -216,8 +216,6 @@ class PrinterExtruder: # Dummy extruder class used when a printer has no extruder at all class DummyExtruder: - def set_max_jerk(self, max_xy_halt_velocity, max_velocity, max_accel): - pass def set_active(self, print_time, is_active): return 0. def motor_off(self, move_time): |