Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
aaron-kulkarni committed Jul 17, 2024
1 parent be9dbf9 commit 34e15e2
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions api/src/opentrons/protocol_engine/state/wells.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
"""Basic well data state and store."""
import pdb
from dataclasses import dataclass
from datetime import datetime
from typing import Dict, List, Optional
Expand Down Expand Up @@ -90,7 +89,7 @@ def get_all(self) -> List[LiquidHeightInfo]:
allHeights.extend(a for a in val.values())
return allHeights

def get_wells_in_labware(self, labware_id: str) -> List[LiquidHeightInfo]:
def get_all_in_labware(self, labware_id: str) -> List[LiquidHeightInfo]:
"""Get all well liquid heights for a particular labware."""
return list(self._state.measured_liquid_heights[labware_id].values())

Expand Down

0 comments on commit 34e15e2

Please sign in to comment.