diff options
Diffstat (limited to 'klippy/extras/probe_eddy_current.py')
-rw-r--r-- | klippy/extras/probe_eddy_current.py | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/klippy/extras/probe_eddy_current.py b/klippy/extras/probe_eddy_current.py index 529b097c..256f9d3a 100644 --- a/klippy/extras/probe_eddy_current.py +++ b/klippy/extras/probe_eddy_current.py @@ -3,9 +3,13 @@ # Copyright (C) 2021-2024 Kevin O'Connor <kevin@koconnor.net> # # This file may be distributed under the terms of the GNU GPLv3 license. -import logging, math, bisect +import bisect +import logging +import math + import mcu -from . import ldc1612, probe, manual_probe + +from . import ldc1612, manual_probe, probe OUT_OF_RANGE = 99.9 |