aboutsummaryrefslogtreecommitdiffstats
path: root/klippy/klippy.py
diff options
context:
space:
mode:
authorKevin O'Connor <kevin@koconnor.net>2020-04-25 13:27:41 -0400
committerKevin O'Connor <kevin@koconnor.net>2020-04-25 14:26:45 -0400
commit17123889f698e2339049bd18e7ece01b9c53e892 (patch)
treee6899a2fcb2df8ca4e10bab9a15f0617ed912805 /klippy/klippy.py
parentd858498a53fe98ed705595b8639b50b219d6262f (diff)
downloadkutter-17123889f698e2339049bd18e7ece01b9c53e892.tar.gz
kutter-17123889f698e2339049bd18e7ece01b9c53e892.tar.xz
kutter-17123889f698e2339049bd18e7ece01b9c53e892.zip
heaters: Make heater.py an "extras" module
The heater logic is an independent module that does not need to be treated as part of the "core" klipper code. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'klippy/klippy.py')
-rw-r--r--klippy/klippy.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/klippy/klippy.py b/klippy/klippy.py
index becbe113..d03e25a5 100644
--- a/klippy/klippy.py
+++ b/klippy/klippy.py
@@ -6,7 +6,7 @@
# This file may be distributed under the terms of the GNU GPLv3 license.
import sys, os, optparse, logging, time, threading, collections, importlib
import util, reactor, queuelogger, msgproto, homing
-import gcode, configfile, pins, heater, mcu, toolhead
+import gcode, configfile, pins, mcu, toolhead
message_ready = "Printer is ready"
@@ -123,7 +123,7 @@ class Printer:
if self.bglogger is not None:
pconfig.log_config(config)
# Create printer components
- for m in [pins, heater, mcu]:
+ for m in [pins, mcu]:
m.add_printer_objects(config)
for section_config in config.get_prefix_sections(''):
self.try_load_module(config, section_config.get_name())