aboutsummaryrefslogtreecommitdiffstats
path: root/klippy
diff options
context:
space:
mode:
Diffstat (limited to 'klippy')
-rw-r--r--klippy/extras/ads1x1x.py1
-rw-r--r--klippy/extras/screws_tilt_adjust.py3
-rw-r--r--klippy/extras/z_thermal_adjust.py1
3 files changed, 1 insertions, 4 deletions
diff --git a/klippy/extras/ads1x1x.py b/klippy/extras/ads1x1x.py
index 1d72996f..10cd01f9 100644
--- a/klippy/extras/ads1x1x.py
+++ b/klippy/extras/ads1x1x.py
@@ -321,7 +321,6 @@ class ADS1X1X_pin:
def __init__(self, chip, config):
self.mcu = chip.mcu
self.chip = chip
- self.config = config
self.invalid_count = 0
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)
diff --git a/klippy/extras/z_thermal_adjust.py b/klippy/extras/z_thermal_adjust.py
index 4cf3a669..a3a5997e 100644
--- a/klippy/extras/z_thermal_adjust.py
+++ b/klippy/extras/z_thermal_adjust.py
@@ -16,7 +16,6 @@ class ZThermalAdjuster:
self.printer = config.get_printer()
self.gcode = self.printer.lookup_object('gcode')
self.lock = threading.Lock()
- self.config = config
# Get config parameters, convert to SI units where necessary
self.temp_coeff = config.getfloat('temp_coeff', minval=-1, maxval=1,