diff --git a/api/src/opentrons/protocols/execution/dev_types.py b/api/src/opentrons/protocols/execution/dev_types.py index cb487c47a80..95bb92c74d2 100644 --- a/api/src/opentrons/protocols/execution/dev_types.py +++ b/api/src/opentrons/protocols/execution/dev_types.py @@ -1,4 +1,4 @@ -from typing import Callable, Dict, TYPE_CHECKING +from typing import Callable, Dict, TYPE_CHECKING, Any from typing_extensions import Protocol, TypedDict @@ -45,7 +45,7 @@ class Dictable(Protocol): not a type (https://github.com/python/mypy/issues/3915) """ - async def _asdict(self) -> None: + async def _asdict(self) -> Dict[Any, Any]: ...