Skip to content

Commit

Permalink
bring back import error
Browse files Browse the repository at this point in the history
  • Loading branch information
andySigler committed Dec 10, 2024
1 parent ddce8fa commit 0995b82
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions hardware-testing/hardware_testing/protocols/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""Protocols."""
from opentrons.protocol_api import ParameterContext

# from opentrons.protocols.labware import get_all_labware_definitions
from opentrons.protocols.labware import get_all_labware_definitions
from typing import List
from opentrons.protocols.parameters.types import ParameterChoice

Expand Down Expand Up @@ -60,8 +60,7 @@ def create_labware_parameters(parameters: ParameterContext) -> None:
# NOTE: Place function inside def add_parameters(parameters) in protocol.
# NOTE: Copy ctx.params.labware_type # type: ignore[attr-defined] to get result

# labware_list = get_all_labware_definitions()
labware_list = ["this", "that"]
labware_list = get_all_labware_definitions()
available_labware_choices: List[ParameterChoice] = []
# Filter out labwaer containing the following strings
# TODO: change get_all_labware_definitions function to one
Expand Down

0 comments on commit 0995b82

Please sign in to comment.