aboutsummaryrefslogtreecommitdiffstats
path: root/klippy/extras/z_thermal_adjust.py
diff options
context:
space:
mode:
authorKevin O'Connor <kevin@koconnor.net>2025-05-14 18:47:36 -0400
committerKevin O'Connor <kevin@koconnor.net>2025-06-04 13:46:28 -0400
commitd120a313b75a41e6d3ae1f53cda9dbd6e1d31615 (patch)
tree2af415dd787f570c7294cfdc0413c765a7f06dc3 /klippy/extras/z_thermal_adjust.py
parent4d4b9684a53fa7e776914b222cdab21f870dad76 (diff)
downloadkutter-d120a313b75a41e6d3ae1f53cda9dbd6e1d31615.tar.gz
kutter-d120a313b75a41e6d3ae1f53cda9dbd6e1d31615.tar.xz
kutter-d120a313b75a41e6d3ae1f53cda9dbd6e1d31615.zip
docs: Note 'config' object shouldn't be accessed after initial load
Update Code_Overview.md to note that the config object should not be stored after the "config loading phase". Remove a few inadvertent cases where a 'config' object was stored in module member variables. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'klippy/extras/z_thermal_adjust.py')
-rw-r--r--klippy/extras/z_thermal_adjust.py1
1 files changed, 0 insertions, 1 deletions
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,