diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2021-01-08 12:07:45 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2021-01-08 12:07:45 -0500 |
commit | ea85d419dea23cac464763c9b36e1b59c9074588 (patch) | |
tree | 5671dd7cf1a2c2ec2a05a87c1f5337e280100185 /klippy/klippy.py | |
parent | c8434ec54b0517503af4aeee9016783d508118b0 (diff) | |
download | kutter-ea85d419dea23cac464763c9b36e1b59c9074588.tar.gz kutter-ea85d419dea23cac464763c9b36e1b59c9074588.tar.xz kutter-ea85d419dea23cac464763c9b36e1b59c9074588.zip |
gcode: Move definition of CommandError and Coord from homing.py to gcode.py
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'klippy/klippy.py')
-rw-r--r-- | klippy/klippy.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/klippy/klippy.py b/klippy/klippy.py index fb1d5f9f..e2c580bc 100644 --- a/klippy/klippy.py +++ b/klippy/klippy.py @@ -5,7 +5,7 @@ # # This file may be distributed under the terms of the GNU GPLv3 license. import sys, os, gc, optparse, logging, time, collections, importlib -import util, reactor, queuelogger, msgproto, homing +import util, reactor, queuelogger, msgproto import gcode, configfile, pins, mcu, toolhead, webhooks message_ready = "Printer is ready" @@ -47,7 +47,7 @@ Printer is shutdown class Printer: config_error = configfile.error - command_error = homing.CommandError + command_error = gcode.CommandError def __init__(self, main_reactor, bglogger, start_args): self.bglogger = bglogger self.start_args = start_args |