diff --git a/api/src/opentrons/hardware_control/ot3api.py b/api/src/opentrons/hardware_control/ot3api.py index 991015734f7..019fbdfe7c7 100644 --- a/api/src/opentrons/hardware_control/ot3api.py +++ b/api/src/opentrons/hardware_control/ot3api.py @@ -1924,12 +1924,9 @@ async def get_tip_presence_status(self, mount: OT3Mount) -> bool: {Axis.Q: tip_motor_pos_float}, {Axis.Q: tip_presence_check_target} ) await self._backend.tip_action(moves=clamp_moves[0]) - try: - tip_status = await self._backend.get_tip_present_state( - mount=checked_mount, expect_multiple_responses=high_throughput - ) - except Exception: - raise + tip_status = await self._backend.get_tip_present_state( + mount=checked_mount, expect_multiple_responses=high_throughput + ) # return tip motors to neutral position await self.home_gear_motors()