diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2022-04-23 21:49:50 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2022-04-23 21:49:50 -0400 |
commit | de14d106a1e00f6cdfdde6e38b7862b30240429f (patch) | |
tree | e8fe5b758a001edd06f074cb16c3071051da5fcd /klippy/extras | |
parent | a829a4c93f6bc723c550f88d401faf54eb384807 (diff) | |
download | kutter-de14d106a1e00f6cdfdde6e38b7862b30240429f.tar.gz kutter-de14d106a1e00f6cdfdde6e38b7862b30240429f.tar.xz kutter-de14d106a1e00f6cdfdde6e38b7862b30240429f.zip |
shaper_calibrate: Add missing import
Reported by @Ludy87.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'klippy/extras')
-rw-r--r-- | klippy/extras/shaper_calibrate.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/klippy/extras/shaper_calibrate.py b/klippy/extras/shaper_calibrate.py index 398ad78e..4ac58970 100644 --- a/klippy/extras/shaper_calibrate.py +++ b/klippy/extras/shaper_calibrate.py @@ -3,7 +3,7 @@ # Copyright (C) 2020 Dmitry Butyugin <dmbutyugin@google.com> # # This file may be distributed under the terms of the GNU GPLv3 license. -import collections, importlib, logging, math, multiprocessing +import collections, importlib, logging, math, multiprocessing, traceback shaper_defs = importlib.import_module('.shaper_defs', 'extras') MIN_FREQ = 5. |