Skip to content

Commit

Permalink
silly me. corrected apiversion gating
Browse files Browse the repository at this point in the history
  • Loading branch information
sanni-t committed Dec 6, 2023
1 parent bea9418 commit 4f883a9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions api/src/opentrons/protocol_api/instrument_context.py
Original file line number Diff line number Diff line change
Expand Up @@ -818,7 +818,7 @@ def pick_up_tip(
move_to_location: Optional[types.Location] = None
active_channels = (
self.active_channels
if self._api_version < _PARTIAL_NOZZLE_CONFIGURATION_ADDED_IN
if self._api_version >= _PARTIAL_NOZZLE_CONFIGURATION_ADDED_IN
else self.channels
)

Expand Down Expand Up @@ -1239,7 +1239,7 @@ def transfer(
blow_out_strategy = None
active_channels = (
self.active_channels
if self._api_version < _PARTIAL_NOZZLE_CONFIGURATION_ADDED_IN
if self._api_version >= _PARTIAL_NOZZLE_CONFIGURATION_ADDED_IN
else self.channels
)

Expand Down

0 comments on commit 4f883a9

Please sign in to comment.