Skip to content

Commit

Permalink
lint 2
Browse files Browse the repository at this point in the history
  • Loading branch information
aaron-kulkarni committed Jul 1, 2024
1 parent 311b42c commit fd51c9a
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 @@ -2073,7 +2073,7 @@ def require_liquid(self, well: labware.Well) -> None:
"""
if well is None:
raise WellDoesNotExistError

try:
self._core.find_liquid_level(well._core)
except Exception as e:
Expand All @@ -2087,7 +2087,7 @@ def get_liquid_height(self, well: labware.Well) -> float:
"""
if well is None:
raise WellDoesNotExistError

try:
height = self._core.find_liquid_level(well._core)
return float(height)
Expand Down

0 comments on commit fd51c9a

Please sign in to comment.