Skip to content

Commit

Permalink
to minimize diff
Browse files Browse the repository at this point in the history
  • Loading branch information
pmoegenburg committed Sep 20, 2024
1 parent aeae324 commit 0e65cd3
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions api/src/opentrons/protocol_engine/commands/aspirate.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,6 @@ async def execute(self, params: AspirateParams) -> _ExecuteReturn:
pipette_id = params.pipetteId
labware_id = params.labwareId
well_name = params.wellName
volume = params.volume

ready_to_aspirate = self._pipetting.get_is_ready_to_aspirate(
pipette_id=pipette_id
Expand Down Expand Up @@ -131,7 +130,7 @@ async def execute(self, params: AspirateParams) -> _ExecuteReturn:
try:
volume_aspirated = await self._pipetting.aspirate_in_place(
pipette_id=pipette_id,
volume=volume,
volume=params.volume,
flow_rate=params.flowRate,
command_note_adder=self._command_note_adder,
)
Expand Down

0 comments on commit 0e65cd3

Please sign in to comment.