mirror of
https://github.com/Klipper3d/klipper.git
synced 2026-02-08 09:10:56 -07:00
backlash: Fix syntax to match Python 2
Signed-off-by: Oleksii Shchetinin <willkaxxx@gmail.com>
This commit is contained in:
parent
df5046c476
commit
039e640416
1 changed files with 1 additions and 1 deletions
|
|
@ -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]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue