Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
ahiuchingau committed May 22, 2024
1 parent 9ce6c09 commit 49b9bd6
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
ClassVar,
runtime_checkable,
TypeVar,
Literal,
)

Response = TypeVar("Response")
Expand Down
1 change: 0 additions & 1 deletion api/src/opentrons/protocol_api/core/module.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
from opentrons.drivers.types import (
HeaterShakerLabwareLatchStatus,
ThermocyclerLidStatus,
AbsorbanceReaderLidStatus,
)
from opentrons.hardware_control.modules.types import (
ModuleModel,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""Command models to initialize an Absorbance Reader."""
from __future__ import annotations
from typing import List, Optional, TYPE_CHECKING
from typing_extensions import Literal, Type
from typing import Optional, Literal, TYPE_CHECKING
from typing_extensions import Type

from pydantic import BaseModel, Field

Expand Down
2 changes: 1 addition & 1 deletion api/src/opentrons/protocol_engine/state/modules.py
Original file line number Diff line number Diff line change
Expand Up @@ -1210,7 +1210,7 @@ def ensure_and_convert_module_fixture_location(
elif model == ModuleModel.THERMOCYCLER_MODULE_V2:
return "thermocyclerModuleV2"
elif model == ModuleModel.ABSORBANCE_READER_V1:
valid_slots = "D3"
valid_slots = ["A3", "B3", "C3", "D3"]
return "absorbanceReaderV1D3"
else:
raise ValueError(
Expand Down

0 comments on commit 49b9bd6

Please sign in to comment.