Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanthecoder committed Jul 19, 2024
1 parent a91e99e commit b541c92
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@

LABWARE_ON_SCALE = "nest_1_reservoir_195ml"


def run(ctx: ProtocolContext) -> None:
"""Run."""
trash = ctx.load_trash_bin("A3")
Expand All @@ -34,7 +35,7 @@ def run(ctx: ProtocolContext) -> None:
pipette.pick_up_tip(rack["A1"])
pipette.aspirate(10, vial["A1"].top())
pipette.dispense(10, vial["A1"].top())
pipette.aspirate(10, dial["A1"].top())
pipette.dispense(10, dial["A1"].top())
pipette.drop_tip(trash)
ctx.move_labware(rack, OFF_DECK)


Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""Liquid Sense OT3 P1000."""
from opentrons.protocol_api import ProtocolContext
from opentrons.protocol_api import ProtocolContext, OFF_DECK

metadata = {"protocolName": "liquid-sense-ot3-p50-multi"}
requirements = {"robotType": "Flex", "apiLevel": "2.15"}
Expand Down Expand Up @@ -30,4 +30,3 @@ def run(ctx: ProtocolContext) -> None:
pipette.dispense(10, dial["A1"].top())
pipette.drop_tip(trash)
ctx.move_labware(rack, OFF_DECK)

Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,4 @@ def run(ctx: ProtocolContext) -> None:
pipette.dispense(10, vial["A1"].top())
pipette.aspirate(1, dial["A1"].top())
pipette.dispense(1, dial["A1"].top())
pipette.drop_tip(home_after=False)
pipette.drop_tip(trash)

0 comments on commit b541c92

Please sign in to comment.