Skip to content

Commit

Permalink
fix(api): import coroutine from typing instead of collections.abc (#1…
Browse files Browse the repository at this point in the history
  • Loading branch information
sanni-t authored Jan 10, 2024
1 parent 7a3b2da commit e0989f3
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions api/src/opentrons/hardware_control/execution_manager.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
import asyncio
import functools
from typing import Set, TypeVar, Type, cast, Callable, Any, overload
from typing import Set, TypeVar, Type, cast, Callable, Any, overload, Coroutine
from .types import ExecutionState
from opentrons_shared_data.errors.exceptions import ExecutionCancelledError
from collections.abc import Coroutine

TaskContents = TypeVar("TaskContents")

Expand Down

0 comments on commit e0989f3

Please sign in to comment.