mirror of
https://github.com/Klipper3d/klipper.git
synced 2026-02-07 16:50:54 -07:00
bed_mesh: Fix tuple vs list error
Commit 2e0c2262e incorrectly changed the internal fpt variable from a
list to a tuple.
Reported by @nefelim4ag.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
This commit is contained in:
parent
c9d904aa9d
commit
7e394d6dd7
1 changed files with 1 additions and 1 deletions
|
|
@ -682,7 +682,7 @@ class BedMeshCalibrate:
|
|||
idx_offset = 0
|
||||
start_idx = 0
|
||||
for i, pts in substitutes.items():
|
||||
fpt = base_points[i][:2]
|
||||
fpt = list(base_points[i][:2])
|
||||
# offset the index to account for additional samples
|
||||
idx = i + idx_offset
|
||||
# Add "normal" points
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue