Skip to content

Commit

Permalink
removing 20ul tips since they are not in shared-data
Browse files Browse the repository at this point in the history
  • Loading branch information
rclarke0 committed Dec 11, 2024
1 parent 465093e commit 13c778b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion hardware-testing/hardware_testing/liquid_sense/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ def build_run_args(cls, args: argparse.Namespace) -> "RunArgs":
elif args.pipette == 50:
tip_volumes = [50]
else:
tip_volumes = [20, 50, 200]
tip_volumes = [50, 200]
else:
tip_volumes = [args.tip]

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
SLOT_DIAL = 9

SLOTS_TIPRACK = {
20: [3],
50: [3],
200: [3],
}
Expand All @@ -21,7 +20,7 @@ def run(ctx: ProtocolContext) -> None:
trash = ctx.load_trash_bin("A3")
vial = ctx.load_labware(LABWARE_ON_SCALE, SLOT_SCALE)
dial = ctx.load_labware("dial_indicator", SLOT_DIAL)
pipette = ctx.load_instrument("flex_96channel_1000", "left")
pipette = ctx.load_instrument("flex_96channel_200", "left")
adapters = [
ctx.load_adapter("opentrons_flex_96_tiprack_adapter", slot)
for slot in SLOTS_TIPRACK[50]
Expand Down

0 comments on commit 13c778b

Please sign in to comment.