Skip to content

Commit 57c842e

Browse files
committed
format
1 parent be9084b commit 57c842e

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

api/tests/opentrons/hardware_control/test_ot3_api.py

+6-2
Original file line numberDiff line numberDiff line change
@@ -1871,9 +1871,13 @@ async def test_dispense_while_tracking(
18711871

18721872
if not tip_present:
18731873
with pytest.raises(UnexpectedTipRemovalError):
1874-
await ot3_hardware.dispense_while_tracking(mount, 8.0, 80.0, push_out=None, is_full_dispense=is_ready)
1874+
await ot3_hardware.dispense_while_tracking(
1875+
mount, 8.0, 80.0, push_out=None, is_full_dispense=is_ready
1876+
)
18751877
else:
1876-
await ot3_hardware.dispense_while_tracking(mount, 8.0, 80.0, push_out=None, is_full_dispense=is_ready)
1878+
await ot3_hardware.dispense_while_tracking(
1879+
mount, 8.0, 80.0, push_out=None, is_full_dispense=True
1880+
)
18771881
if is_ready:
18781882
# make sure the move planning math stays the same
18791883
expected_target_pos = {

api/tests/opentrons/protocol_engine/commands/test_dispense_while_tracking.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,9 @@ async def test_dispense_while_tracking_implementation(
101101
is_full_dispense=True,
102102
)
103103
).then_return(42)
104-
decoy.when(state_view.pipettes.get_aspirated_volume("pipette-id-abc")).then_return(123)
104+
decoy.when(state_view.pipettes.get_aspirated_volume("pipette-id-abc")).then_return(
105+
123
106+
)
105107

106108
decoy.when(pipetting.get_state_view()).then_return(state_view)
107109

0 commit comments

Comments
 (0)