aboutsummaryrefslogtreecommitdiffstats
path: root/klippy
diff options
context:
space:
mode:
authorEric Callahan <arksine.code@gmail.com>2024-04-21 06:04:24 -0400
committerKevin O'Connor <kevin@koconnor.net>2024-05-21 20:16:31 -0400
commit29bfbd02f924c6cfc0f339129bc8ba302cabc4d4 (patch)
tree77a97a09536a2dbbfa1b57ee24074ad02f4a15c9 /klippy
parent236d780a0a3f00017e1a1193e036f0e0eb641437 (diff)
downloadkutter-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')
-rw-r--r--klippy/extras/probe_eddy_current.py2
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):