From 039e6404168b614753e88502249dcd8c473cf3db Mon Sep 17 00:00:00 2001 From: Oleksii Shchetinin Date: Wed, 31 Dec 2025 17:06:45 +0200 Subject: [PATCH] backlash: Fix syntax to match Python 2 Signed-off-by: Oleksii Shchetinin --- klippy/extras/backlash.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/klippy/extras/backlash.py b/klippy/extras/backlash.py index 44ffa9a13..f67427065 100644 --- a/klippy/extras/backlash.py +++ b/klippy/extras/backlash.py @@ -80,7 +80,7 @@ class BacklashCompensation: pos[2] -= offset_z return pos - def move(self, newpos, speed) -> None: + def move(self, newpos, speed): # Get current logical position cur_pos = self.get_position() start_x, start_y, start_z = cur_pos[0], cur_pos[1], cur_pos[2]