diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2019-02-28 00:29:03 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2019-02-28 00:30:05 -0500 |
commit | 5f5d39ef3fae1029cccbbcdf0ba0d009b89c0f09 (patch) | |
tree | cccd29cfae892f981b85bbd28dbd2c48833c95e8 /klippy | |
parent | b40a04fb8d9262419517773434a366f496ca82f8 (diff) | |
download | kutter-5f5d39ef3fae1029cccbbcdf0ba0d009b89c0f09.tar.gz kutter-5f5d39ef3fae1029cccbbcdf0ba0d009b89c0f09.tar.xz kutter-5f5d39ef3fae1029cccbbcdf0ba0d009b89c0f09.zip |
bed_screws: Fix missing import
Reported by @JoaoFelipe.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'klippy')
-rw-r--r-- | klippy/extras/bed_screws.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/klippy/extras/bed_screws.py b/klippy/extras/bed_screws.py index ce6754da..ed7b1658 100644 --- a/klippy/extras/bed_screws.py +++ b/klippy/extras/bed_screws.py @@ -3,6 +3,7 @@ # Copyright (C) 2019 Kevin O'Connor <kevin@koconnor.net> # # This file may be distributed under the terms of the GNU GPLv3 license. +import homing def parse_coord(config, param): pair = config.get(param).strip().split(',', 1) |