diff --git a/api/src/opentrons/hardware_control/execution_manager.py b/api/src/opentrons/hardware_control/execution_manager.py index de7725f819c..08e32f31fe9 100644 --- a/api/src/opentrons/hardware_control/execution_manager.py +++ b/api/src/opentrons/hardware_control/execution_manager.py @@ -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")