Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
sfoster1 committed Oct 28, 2024
1 parent 8a74d85 commit ab45875
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 0 additions & 1 deletion api/src/opentrons/protocol_engine/state/geometry.py
Original file line number Diff line number Diff line change
Expand Up @@ -1401,7 +1401,6 @@ def get_meniscus_height(
well_name: str,
) -> float:
"""Returns stored meniscus height in specified well."""

well_liquid = self._wells.get_well_liquid_info(
labware_id=labware_id, well_name=well_name
)
Expand Down
2 changes: 1 addition & 1 deletion api/src/opentrons/protocol_engine/state/wells.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Basic well data state and store."""
from dataclasses import dataclass
from typing import Dict, List, Optional, Tuple
from typing import Dict, List

from opentrons.protocol_engine.types import (
ProbedHeightInfo,
Expand Down
2 changes: 2 additions & 0 deletions api/src/opentrons/protocol_engine/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -394,6 +394,8 @@ class WellInfoSummary(BaseModel):

@dataclass
class WellLiquidInfo:
"""Tracked and sensed information about liquid in a well."""

probed_height: Optional[ProbedHeightInfo]
loaded_volume: Optional[LoadedVolumeInfo]
probed_volume: Optional[ProbedVolumeInfo]
Expand Down

0 comments on commit ab45875

Please sign in to comment.