From ab45875b904efebfc3c91f215922f6d36f82c89d Mon Sep 17 00:00:00 2001 From: Seth Foster Date: Mon, 28 Oct 2024 11:44:11 -0400 Subject: [PATCH] lint --- api/src/opentrons/protocol_engine/state/geometry.py | 1 - api/src/opentrons/protocol_engine/state/wells.py | 2 +- api/src/opentrons/protocol_engine/types.py | 2 ++ 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/api/src/opentrons/protocol_engine/state/geometry.py b/api/src/opentrons/protocol_engine/state/geometry.py index 97af43ac4b7..471065adcc2 100644 --- a/api/src/opentrons/protocol_engine/state/geometry.py +++ b/api/src/opentrons/protocol_engine/state/geometry.py @@ -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 ) diff --git a/api/src/opentrons/protocol_engine/state/wells.py b/api/src/opentrons/protocol_engine/state/wells.py index 39816efaeb3..b30d7fa2b2e 100644 --- a/api/src/opentrons/protocol_engine/state/wells.py +++ b/api/src/opentrons/protocol_engine/state/wells.py @@ -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, diff --git a/api/src/opentrons/protocol_engine/types.py b/api/src/opentrons/protocol_engine/types.py index 98232f191e7..e3e8edc3603 100644 --- a/api/src/opentrons/protocol_engine/types.py +++ b/api/src/opentrons/protocol_engine/types.py @@ -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]