From 3ac1bda7d7c3acef03604222e1ef2d550d3390f6 Mon Sep 17 00:00:00 2001 From: Seth Foster Date: Tue, 6 Aug 2024 15:42:53 -0400 Subject: [PATCH] protocols/execution/dev_types: correct asdict --- api/src/opentrons/protocols/execution/dev_types.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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]: ...