diff options
Diffstat (limited to 'klippy/extras/screws_tilt_adjust.py')
-rw-r--r-- | klippy/extras/screws_tilt_adjust.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/klippy/extras/screws_tilt_adjust.py b/klippy/extras/screws_tilt_adjust.py index fec54185..b988c7ce 100644 --- a/klippy/extras/screws_tilt_adjust.py +++ b/klippy/extras/screws_tilt_adjust.py @@ -9,7 +9,6 @@ from . import probe class ScrewsTiltAdjust: def __init__(self, config): - self.config = config self.printer = config.get_printer() self.screws = [] self.results = {} @@ -33,7 +32,7 @@ class ScrewsTiltAdjust: default='CW-M3') # Initialize ProbePointsHelper points = [coord for coord, name in self.screws] - self.probe_helper = probe.ProbePointsHelper(self.config, + self.probe_helper = probe.ProbePointsHelper(config, self.probe_finalize, default_points=points) self.probe_helper.minimum_points(3) |