diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2019-11-12 14:21:15 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2019-11-12 17:32:18 -0500 |
commit | a4995c61c986d947af03b6f90c945cfcf8577811 (patch) | |
tree | f9de675363b65d6bd763be53796fcdadcaccfce3 /klippy/extras/bltouch.py | |
parent | 78153ca4c3cb93df7bf651113c166f1866623b1a (diff) | |
download | kutter-a4995c61c986d947af03b6f90c945cfcf8577811.tar.gz kutter-a4995c61c986d947af03b6f90c945cfcf8577811.tar.xz kutter-a4995c61c986d947af03b6f90c945cfcf8577811.zip |
stepper: Remove add_to_endstop() method
Now that the PrinterStepper and MCU_stepper classes have been merged,
there is no need for the add_to_endstop() method.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'klippy/extras/bltouch.py')
-rw-r--r-- | klippy/extras/bltouch.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/klippy/extras/bltouch.py b/klippy/extras/bltouch.py index 52c6586d..79cd1735 100644 --- a/klippy/extras/bltouch.py +++ b/klippy/extras/bltouch.py @@ -63,7 +63,7 @@ class BLTouchEndstopWrapper: def _build_config(self): kin = self.printer.lookup_object('toolhead').get_kinematics() for stepper in kin.get_steppers('Z'): - stepper.add_to_endstop(self) + self.add_stepper(stepper) def handle_connect(self): try: self.raise_probe() |