diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2024-06-15 11:04:07 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2024-06-15 11:06:56 -0400 |
commit | 433fcb6f249406c8b5e2f25d1e870809beeafb40 (patch) | |
tree | 5971abd057cd0d1a77d1c109398b2ed1f2cc3e79 /klippy/extras/axis_twist_compensation.py | |
parent | beba2c2d3380acc966e876ee02e4902ab3e71976 (diff) | |
download | kutter-433fcb6f249406c8b5e2f25d1e870809beeafb40.tar.gz kutter-433fcb6f249406c8b5e2f25d1e870809beeafb40.tar.xz kutter-433fcb6f249406c8b5e2f25d1e870809beeafb40.zip |
axis_twist_compensation: Fix missing probe import
Fixes missing import introduced in commit bec47e04.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'klippy/extras/axis_twist_compensation.py')
-rw-r--r-- | klippy/extras/axis_twist_compensation.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/klippy/extras/axis_twist_compensation.py b/klippy/extras/axis_twist_compensation.py index 184e9931..e7aad52c 100644 --- a/klippy/extras/axis_twist_compensation.py +++ b/klippy/extras/axis_twist_compensation.py @@ -5,7 +5,7 @@ # This file may be distributed under the terms of the GNU GPLv3 license. import math -from . import manual_probe, bed_mesh +from . import manual_probe, bed_mesh, probe DEFAULT_SAMPLE_COUNT = 3 |