Skip to content

Commit

Permalink
fix(api): disable motors during the pipette attach and detach position (
Browse files Browse the repository at this point in the history
  • Loading branch information
Laura-Danielle authored May 23, 2023
1 parent 4c68ff5 commit a0edb21
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
from pydantic import BaseModel, Field

from opentrons.types import MountType, Point
from opentrons.hardware_control.types import CriticalPoint
from opentrons.hardware_control.types import CriticalPoint, Axis
from opentrons.protocol_engine.commands.command import (
AbstractCommandImpl,
BaseCommand,
Expand Down Expand Up @@ -72,6 +72,7 @@ async def execute(
critical_point=CriticalPoint.MOUNT,
)

await self._hardware_api.disengage_axes([Axis.Z, Axis.A])
return MoveToMaintenancePositionResult()


Expand Down

0 comments on commit a0edb21

Please sign in to comment.