@@ -182,7 +182,7 @@ async def _partial_pick_up(api: OT3API, position: Point, current: float) -> None
182
182
safe_height = position .z + 10 ,
183
183
)
184
184
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 ))
186
186
await api .prepare_for_aspirate (OT3Mount .LEFT )
187
187
await api .home_z (OT3Mount .LEFT )
188
188
@@ -238,7 +238,6 @@ async def run(api: OT3API, report: CSVReport, section: str, pipette: Literal[200
238
238
raise NameError ("offset position miss" )
239
239
240
240
tip_pos = tip_rack_actual_pos + offset_pos
241
- print (f"Tip pos: { tip_pos } " )
242
241
ui .get_user_ready ("Pick up tip" )
243
242
await _partial_pick_up (api , tip_pos , current = 0.1 )
244
243
await api .prepare_for_aspirate (OT3Mount .LEFT )
@@ -307,7 +306,7 @@ async def run(api: OT3API, report: CSVReport, section: str, pipette: Literal[200
307
306
await helpers_ot3 .move_to_arched_ot3 (api , OT3Mount .LEFT , trash_nominal + Point (z = 20 ))
308
307
await api .move_to (OT3Mount .LEFT , trash_nominal )
309
308
await api .drop_tip (OT3Mount .LEFT )
310
- await api .remove_tip (OT3Mount .LEFT )
309
+ api .remove_tip (OT3Mount .LEFT )
311
310
await api .home ()
312
311
313
312
0 commit comments