Skip to content

Commit

Permalink
use the right MotorAxis key
Browse files Browse the repository at this point in the history
  • Loading branch information
Laura-Danielle committed Oct 8, 2024
1 parent c9a2d5a commit 5617e6e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ async def execute(
current_position = await self._gantry_mover.move_axes(
axis_map=params.axis_map,
speed=params.speed,
critical_point={MotorAxis.X: 0.0, MotorAxis.Y: 0.0, MotorAxis.Z_L: 0.0},
critical_point={MotorAxis.X: 0.0, MotorAxis.Y: 0.0, MotorAxis.LEFT_Z: 0.0},
)
return SuccessData(
public=MoveAxesToResult(position=current_position),
Expand Down

0 comments on commit 5617e6e

Please sign in to comment.