diff options
author | Thijs Triemstra <info@collab.nl> | 2025-07-25 18:31:19 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-07-25 12:31:19 -0400 |
commit | 60879fd298fe3b4f3dda63561e6a1c9bdc5ee9af (patch) | |
tree | 74cd5c84ca4758c2de14f0fd1686b75a74bfa142 /klippy/extras/angle.py | |
parent | ef4c76fe9494d0e011d6da5610fa868d2e702fff (diff) | |
download | kutter-60879fd298fe3b4f3dda63561e6a1c9bdc5ee9af.tar.gz kutter-60879fd298fe3b4f3dda63561e6a1c9bdc5ee9af.tar.xz kutter-60879fd298fe3b4f3dda63561e6a1c9bdc5ee9af.zip |
klippy: fix typos in python code (#6989)
Signed-off-by: Thijs Triemstra <info@collab.nl>
Diffstat (limited to 'klippy/extras/angle.py')
-rw-r--r-- | klippy/extras/angle.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/klippy/extras/angle.py b/klippy/extras/angle.py index 3b1f323e..73af67ca 100644 --- a/klippy/extras/angle.py +++ b/klippy/extras/angle.py @@ -97,7 +97,7 @@ class AngleCalibration: return None return self.mcu_stepper.mcu_to_commanded_position(self.mcu_pos_offset) def load_calibration(self, angles): - # Calculate linear intepolation calibration buckets by solving + # Calculate linear interpolation calibration buckets by solving # linear equations angle_max = 1 << ANGLE_BITS calibration_count = 1 << CALIBRATION_BITS |