Skip to content

Commit

Permalink
actually look for tip not attached error
Browse files Browse the repository at this point in the history
  • Loading branch information
Laura-Danielle committed Nov 20, 2024
1 parent 8ab5cfd commit b295e11
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/src/opentrons/protocol_engine/state/pipettes.py
Original file line number Diff line number Diff line change
Expand Up @@ -787,7 +787,7 @@ def lookup_volume_to_mm_conversion(
"""Get the volumn to mm conversion for a pipette."""
try:
lookup_volume = self.get_working_volume(pipette_id)
except errors.TipAttachedError:
except errors.TipNotAttachedError:
lookup_volume = self.get_maximum_volume(pipette_id)

pipette_config = self.get_config(pipette_id)
Expand Down

0 comments on commit b295e11

Please sign in to comment.