diff options
Diffstat (limited to 'klippy/extras/load_cell_probe.py')
-rw-r--r-- | klippy/extras/load_cell_probe.py | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/klippy/extras/load_cell_probe.py b/klippy/extras/load_cell_probe.py index de54792f..6407ccbf 100644 --- a/klippy/extras/load_cell_probe.py +++ b/klippy/extras/load_cell_probe.py @@ -3,9 +3,12 @@ # Copyright (C) 2025 Gareth Farrington <gareth@waves.ky> # # This file may be distributed under the terms of the GNU GPLv3 license. -import logging, math +import logging +import math + import mcu -from . import probe, sos_filter, load_cell, hx71x, ads1220 + +from . import ads1220, hx71x, load_cell, probe, sos_filter np = None # delay NumPy import until configuration time |