diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2020-10-30 13:02:44 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2020-10-30 13:02:44 -0400 |
commit | 19b2363c931b03f1ea2fa17f94bf2458d62d9a77 (patch) | |
tree | 94902ea7519880e935f30102364f26f6d6d803af /klippy/klippy.py | |
parent | 79877acb14c01720130c469a25e86f0d06c539f3 (diff) | |
download | kutter-19b2363c931b03f1ea2fa17f94bf2458d62d9a77.tar.gz kutter-19b2363c931b03f1ea2fa17f94bf2458d62d9a77.tar.xz kutter-19b2363c931b03f1ea2fa17f94bf2458d62d9a77.zip |
klippy: Remove import of unused threading module
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'klippy/klippy.py')
-rw-r--r-- | klippy/klippy.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/klippy/klippy.py b/klippy/klippy.py index 0204cef7..fb1d5f9f 100644 --- a/klippy/klippy.py +++ b/klippy/klippy.py @@ -4,7 +4,7 @@ # Copyright (C) 2016-2020 Kevin O'Connor <kevin@koconnor.net> # # This file may be distributed under the terms of the GNU GPLv3 license. -import sys, os, gc, optparse, logging, time, threading, collections, importlib +import sys, os, gc, optparse, logging, time, collections, importlib import util, reactor, queuelogger, msgproto, homing import gcode, configfile, pins, mcu, toolhead, webhooks |