Skip to content

Commit 37ddb1e

Browse files
committed
resume useing sealed block for pressure testing
1 parent a0087ec commit 37ddb1e

File tree

1 file changed

+2
-3
lines changed
  • hardware-testing/hardware_testing/production_qc/ninety_six_assembly_qc_ot3

1 file changed

+2
-3
lines changed

hardware-testing/hardware_testing/production_qc/ninety_six_assembly_qc_ot3/test_pressure.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ async def _partial_pick_up(api: OT3API, position: Point, current: float) -> None
182182
safe_height=position.z + 10,
183183
)
184184
await _partial_pick_up_z_motion(api, current=current, distance=12, speed=3) # change distance and speed, in case collision detected error
185-
await api.add_tip(OT3Mount.LEFT, helpers_ot3.get_default_tip_length(TIP_VOLUME))
185+
api.add_tip(OT3Mount.LEFT, helpers_ot3.get_default_tip_length(TIP_VOLUME))
186186
await api.prepare_for_aspirate(OT3Mount.LEFT)
187187
await api.home_z(OT3Mount.LEFT)
188188

@@ -238,7 +238,6 @@ async def run(api: OT3API, report: CSVReport, section: str, pipette: Literal[200
238238
raise NameError("offset position miss")
239239

240240
tip_pos = tip_rack_actual_pos + offset_pos
241-
print(f"Tip pos: {tip_pos}")
242241
ui.get_user_ready("Pick up tip")
243242
await _partial_pick_up(api, tip_pos, current=0.1)
244243
await api.prepare_for_aspirate(OT3Mount.LEFT)
@@ -307,7 +306,7 @@ async def run(api: OT3API, report: CSVReport, section: str, pipette: Literal[200
307306
await helpers_ot3.move_to_arched_ot3(api, OT3Mount.LEFT, trash_nominal + Point(z=20))
308307
await api.move_to(OT3Mount.LEFT, trash_nominal)
309308
await api.drop_tip(OT3Mount.LEFT)
310-
await api.remove_tip(OT3Mount.LEFT)
309+
api.remove_tip(OT3Mount.LEFT)
311310
await api.home()
312311

313312

0 commit comments

Comments
 (0)