From e0989f3396dc2b97c94b881a3c4eef22013fd2cb Mon Sep 17 00:00:00 2001 From: Sanniti Pimpley Date: Tue, 9 Jan 2024 19:22:04 -0500 Subject: [PATCH] fix(api): import coroutine from typing instead of collections.abc (#14304) --- api/src/opentrons/hardware_control/execution_manager.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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")