diff options
author | Eric Callahan <arksine.code@gmail.com> | 2024-04-21 06:04:24 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2024-05-21 20:16:31 -0400 |
commit | 29bfbd02f924c6cfc0f339129bc8ba302cabc4d4 (patch) | |
tree | 77a97a09536a2dbbfa1b57ee24074ad02f4a15c9 /klippy/extras/probe_eddy_current.py | |
parent | 236d780a0a3f00017e1a1193e036f0e0eb641437 (diff) | |
download | kutter-29bfbd02f924c6cfc0f339129bc8ba302cabc4d4.tar.gz kutter-29bfbd02f924c6cfc0f339129bc8ba302cabc4d4.tar.xz kutter-29bfbd02f924c6cfc0f339129bc8ba302cabc4d4.zip |
probe_eddy_current: fix attribute name
Signed-off-by: Eric Callahan <arksine.code@gmail.com>
Diffstat (limited to 'klippy/extras/probe_eddy_current.py')
-rw-r--r-- | klippy/extras/probe_eddy_current.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/klippy/extras/probe_eddy_current.py b/klippy/extras/probe_eddy_current.py index f670765c..73616af0 100644 --- a/klippy/extras/probe_eddy_current.py +++ b/klippy/extras/probe_eddy_current.py @@ -208,7 +208,7 @@ class EddyEndstopWrapper: if self._is_sampling: return self._is_sampling = True - self._is_from_home = is_home + self._start_from_home = is_home self._sensor_helper.add_client(self._add_measurement) def _stop_measurements(self, is_home=False): if not self._is_sampling or (is_home and not self._start_from_home): |