From d6a6607dcf69a6381e1adbf8c3837ab55462cb5d Mon Sep 17 00:00:00 2001 From: Christopher Mattar Date: Thu, 26 Feb 2026 20:10:14 -0500 Subject: [PATCH] fix: Remove trailing whitespace Signed-off-by: Christopher Mattar --- docs/Status_Reference.md | 6 +++--- klippy/extras/quad_gantry_level.py | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/Status_Reference.md b/docs/Status_Reference.md index 940b5dcd3..59558febb 100644 --- a/docs/Status_Reference.md +++ b/docs/Status_Reference.md @@ -445,10 +445,10 @@ The following information is available in the `quad_gantry_level` object (this object is available if quad_gantry_level is defined): - `applied`: True if the gantry leveling process has been run and completed successfully. -- `z_height`: A list of four numbers indicating the Z actuator positions. +- `z_height`: A list of four numbers indicating the Z actuator positions. Set to `[0,0,0,0]` if the gantry leveling process has not been run. -- `z_positions`: A list of four numbers indicating the positions at which - the Z probe triggered during a quad gantry level. Set to `[0,0,0,0]` if +- `z_positions`: A list of four numbers indicating the positions at which + the Z probe triggered during a quad gantry level. Set to `[0,0,0,0]` if the gantry leveling process has not been run. ## query_endstops diff --git a/klippy/extras/quad_gantry_level.py b/klippy/extras/quad_gantry_level.py index 4641c8ab5..615bd5dbb 100644 --- a/klippy/extras/quad_gantry_level.py +++ b/klippy/extras/quad_gantry_level.py @@ -91,7 +91,7 @@ class QuadGantryLevel: z_height[1] = self.plot(slope_y_s01, self.gantry_corners[1][1]) z_height[2] = self.plot(slope_y_s23, self.gantry_corners[1][1]) z_height[3] = self.plot(slope_y_s23, self.gantry_corners[0][1]) - + self.z_height = z_height self.z_positions = z_positions