aboutsummaryrefslogtreecommitdiffstats
path: root/klippy/klippy.py
diff options
context:
space:
mode:
authorKevin O'Connor <kevin@koconnor.net>2018-07-12 22:15:45 -0400
committerKevin O'Connor <kevin@koconnor.net>2018-07-12 22:50:25 -0400
commit8faab46ed2fc05495e63bbca8fe3dfa6828f7db3 (patch)
tree313faa1a4357e24c57f7d5ea863edbf282a35742 /klippy/klippy.py
parent7d897d84d773654a8beaf56012e0bf8285db8206 (diff)
downloadkutter-8faab46ed2fc05495e63bbca8fe3dfa6828f7db3.tar.gz
kutter-8faab46ed2fc05495e63bbca8fe3dfa6828f7db3.tar.xz
kutter-8faab46ed2fc05495e63bbca8fe3dfa6828f7db3.zip
toolhead: Move kinematic modules to new kinematics/ directory
Move extruder.py, cartesian.py, corexy.py, and delta.py to a new kinematics/ sub-directory. This is intended to make adding new kinematics a little easier. 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 03d71eff..ba6b4579 100644
--- a/klippy/klippy.py
+++ b/klippy/klippy.py
@@ -7,7 +7,7 @@
import sys, os, optparse, logging, time, threading
import collections, ConfigParser, importlib
import util, reactor, queuelogger, msgproto
-import gcode, pins, heater, mcu, toolhead, extruder
+import gcode, pins, heater, mcu, toolhead
message_ready = "Printer is ready"
@@ -216,7 +216,7 @@ class Printer:
m.add_printer_objects(config)
for section in fileconfig.sections():
self.try_load_module(config, section)
- for m in [toolhead, extruder]:
+ for m in [toolhead]:
m.add_printer_objects(config)
# Validate that there are no undefined parameters in the config file
valid_sections = { s: 1 for s, o in self.all_config_options }