From 7e394d6dd7cf1348342ff265385eb3afea4f1c59 Mon Sep 17 00:00:00 2001 From: Kevin O'Connor Date: Mon, 26 Jan 2026 18:30:18 -0500 Subject: [PATCH] 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 --- klippy/extras/bed_mesh.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/klippy/extras/bed_mesh.py b/klippy/extras/bed_mesh.py index 9e5b206e9..dbe4f331c 100644 --- a/klippy/extras/bed_mesh.py +++ b/klippy/extras/bed_mesh.py @@ -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