From de1228dfabb273455df694e360732af04390f5c6 Mon Sep 17 00:00:00 2001 From: Brandon Nance Date: Sun, 19 Nov 2023 18:40:07 -0500 Subject: [PATCH] fix importlib --- klippy/klippy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/klippy/klippy.py b/klippy/klippy.py index f28453772..801536fc6 100644 --- a/klippy/klippy.py +++ b/klippy/klippy.py @@ -4,7 +4,7 @@ # Copyright (C) 2016-2020 Kevin O'Connor # # This file may be distributed under the terms of the GNU GPLv3 license. -import sys, os, gc, optparse, logging, time, collections, importlib +import sys, os, gc, optparse, logging, time, collections, importlib, importlib.util import util, reactor, queuelogger, msgproto import gcode, configfile, pins, mcu, toolhead, webhooks