Skip to content

Commit

Permalink
fixed rebase ouchies
Browse files Browse the repository at this point in the history
  • Loading branch information
caila-marashaj committed Jan 30, 2025
1 parent 9eaab01 commit 303da65
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 1 deletion.
2 changes: 2 additions & 0 deletions api/src/opentrons/protocol_api/core/engine/instrument.py
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,7 @@ def aspirate(
rate: float,
flow_rate: float,
in_place: bool,
correction_volume: float = 0.0,
meniscus_tracking: Optional[MeniscusTrackingTarget] = None,
) -> None:
"""Aspirate a given volume of liquid from the specified location.
Expand Down Expand Up @@ -241,6 +242,7 @@ def dispense(
flow_rate: float,
in_place: bool,
push_out: Optional[float],
correction_volume: float = 0.0,
meniscus_tracking: Optional[MeniscusTrackingTarget] = None,
) -> None:
"""Dispense a given volume of liquid into the specified location.
Expand Down
2 changes: 2 additions & 0 deletions api/src/opentrons/protocol_api/core/instrument.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ def aspirate(
rate: float,
flow_rate: float,
in_place: bool,
correction_volume: float = 0.0,
meniscus_tracking: Optional[types.MeniscusTrackingTarget] = None,
) -> None:
"""Aspirate a given volume of liquid from the specified location.
Expand All @@ -70,6 +71,7 @@ def dispense(
flow_rate: float,
in_place: bool,
push_out: Optional[float],
correction_volume: float = 0.0,
meniscus_tracking: Optional[types.MeniscusTrackingTarget] = None,
) -> None:
"""Dispense a given volume of liquid into the specified location.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ def aspirate(
rate: float,
flow_rate: float,
in_place: bool,
correction_volume: float = 0.0,
meniscus_tracking: Optional[types.MeniscusTrackingTarget] = None,
) -> None:
"""Aspirate a given volume of liquid from the specified location.
Expand Down Expand Up @@ -132,6 +133,7 @@ def dispense(
flow_rate: float,
in_place: bool,
push_out: Optional[float],
correction_volume: float = 0.0,
meniscus_tracking: Optional[types.MeniscusTrackingTarget] = None,
) -> None:
"""Dispense a given volume of liquid into the specified location.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,7 @@ def aspirate(
rate: float,
flow_rate: float,
in_place: bool,
correction_volume: float = 0.0,
meniscus_tracking: Optional[types.MeniscusTrackingTarget] = None,
) -> None:
if self.get_current_volume() == 0:
Expand Down Expand Up @@ -142,6 +143,7 @@ def dispense(
flow_rate: float,
in_place: bool,
push_out: Optional[float],
correction_volume: float = 0.0,
meniscus_tracking: Optional[types.MeniscusTrackingTarget] = None,
) -> None:
if isinstance(location, (TrashBin, WasteChute)):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,6 @@ def test_mix(
rate=1,
flow_rate=aspirate_flow_rate,
in_place=True,
is_meniscus=None,
correction_volume=aspirate_correction_volume,
),
mock_instrument_core.delay(0.2),
Expand Down
7 changes: 7 additions & 0 deletions api/tests/opentrons/protocol_api/test_instrument_context.py
Original file line number Diff line number Diff line change
Expand Up @@ -1547,6 +1547,7 @@ def test_mix_no_lpd(
1.23,
5.67,
False,
0.0,
None,
),
times=10,
Expand All @@ -1563,6 +1564,7 @@ def test_mix_no_lpd(
5.67,
False,
None,
0.0,
None,
),
times=10,
Expand All @@ -1577,6 +1579,7 @@ def test_mix_no_lpd(
5.67,
False,
0.0,
0.0,
None,
),
times=9,
Expand All @@ -1590,6 +1593,7 @@ def test_mix_no_lpd(
5.67,
False,
None,
0.0,
None,
),
times=1,
Expand Down Expand Up @@ -1647,6 +1651,7 @@ def test_mix_with_lpd(
1.23,
5.67,
False,
0.0,
None,
),
times=10,
Expand All @@ -1660,6 +1665,7 @@ def test_mix_with_lpd(
5.67,
False,
0.0,
0.0,
None,
),
times=9,
Expand All @@ -1673,6 +1679,7 @@ def test_mix_with_lpd(
5.67,
False,
None,
0.0,
None,
),
times=1,
Expand Down

0 comments on commit 303da65

Please sign in to comment.