diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2020-04-25 12:01:52 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2020-04-25 12:01:52 -0400 |
commit | c590bf76430a1b14a1f9b5ad0c37840291d7b8a9 (patch) | |
tree | 567c69fe813d86028ac3ecccc44c5a1bbc810482 /klippy/extras/bltouch.py | |
parent | 64031ab3d7c5a857d5bdaa975752112f2da38a49 (diff) | |
download | kutter-c590bf76430a1b14a1f9b5ad0c37840291d7b8a9.tar.gz kutter-c590bf76430a1b14a1f9b5ad0c37840291d7b8a9.tar.xz kutter-c590bf76430a1b14a1f9b5ad0c37840291d7b8a9.zip |
probe: Rename probe_prepare/finalize to probe_prepare/finish
The probe_finalize() name is used for callbacks in both the
PrinterProbe and ProbePointsHelper classes. Rename the PrinterProbe
callback to avoid confusion.
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 56d6d323..ded6beea 100644 --- a/klippy/extras/bltouch.py +++ b/klippy/extras/bltouch.py @@ -182,7 +182,7 @@ class BLTouchEndstopWrapper: toolhead.flush_step_generation() self.start_mcu_pos = [(s, s.get_mcu_position()) for s in self.mcu_endstop.get_steppers()] - def probe_finalize(self): + def probe_finish(self): if self.multi == 'OFF': self.raise_probe() self.sync_print_time() |