File tree 1 file changed +2
-2
lines changed
api/src/opentrons/hardware_control/instruments/ot3
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -139,13 +139,13 @@ def check_ready_for_jaw_move(self) -> None:
139
139
raise GripError ("Gripper jaw must be homed before moving" )
140
140
141
141
def is_ready_for_idle (self ) -> bool :
142
- """Raise an exception if it is not currently valid to idle the jaw ."""
142
+ """Gripper can idle when the jaw is not currently gripping ."""
143
143
gripper = self .get_gripper ()
144
144
if gripper .state == GripperJawState .UNHOMED :
145
145
self ._log .warning (
146
146
"Gripper jaw is not homed and cannot move to idle position."
147
147
)
148
- return gripper .state = = GripperJawState .GRIPPING
148
+ return gripper .state ! = GripperJawState .GRIPPING
149
149
150
150
def is_ready_for_jaw_home (self ) -> bool :
151
151
"""Raise an exception if it is not currently valid to home the jaw."""
You can’t perform that action at this time.
0 commit comments