Skip to content

Commit

Permalink
protocols/execution/dev_types: correct asdict
Browse files Browse the repository at this point in the history
  • Loading branch information
sfoster1 committed Aug 6, 2024
1 parent c456e9a commit 3ac1bda
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions api/src/opentrons/protocols/execution/dev_types.py
Original file line number Diff line number Diff line change
@@ -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

Expand Down Expand Up @@ -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]:
...


Expand Down

0 comments on commit 3ac1bda

Please sign in to comment.