Skip to content

Commit

Permalink
only dispense air gap on non-blank trials
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanthecoder committed Mar 13, 2024
1 parent 1d39f5f commit 2fc8936
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,8 @@ def _aspirate_on_retract() -> None:

def _dispense_on_approach() -> None:
# remove trailing-air-gap
pipette.dispense(liquid_class.aspirate.trailing_air_gap)
if not blank:
pipette.dispense(liquid_class.aspirate.trailing_air_gap)

def _dispense_on_submerge() -> None:
callbacks.on_dispensing()
Expand Down

0 comments on commit 2fc8936

Please sign in to comment.