Skip to content

Commit

Permalink
avoid circular imports
Browse files Browse the repository at this point in the history
  • Loading branch information
jbleon95 committed Feb 2, 2024
1 parent 1c8cec2 commit a599e17
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions api/src/opentrons/commands/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
from typing_extensions import Literal, Final, TypedDict
from typing import Optional, List, Sequence, TYPE_CHECKING, Union
from opentrons.hardware_control.modules import ThermocyclerStep
from opentrons.protocol_api._trash_bin import TrashBin
from opentrons.protocol_api._waste_chute import WasteChute

if TYPE_CHECKING:
from opentrons.protocol_api import InstrumentContext
from opentrons.protocol_api.labware import Well
from opentrons.protocol_api._trash_bin import TrashBin
from opentrons.protocol_api._waste_chute import WasteChute

from opentrons.types import Location

Expand Down

0 comments on commit a599e17

Please sign in to comment.