inngest / inngest-py

Python SDK for Inngest
https://www.inngest.com/docs/reference/python
Apache License 2.0
24 stars 6 forks source link

Fix type error when returning TypedDict #131

Closed goodoldneon closed 1 month ago

goodoldneon commented 1 month ago

Fix a type error when returning TypedDict in a step or function.

This happened because our JSON type contains Mapping[str, "JSON"] (it's recursive), but TypedDict is compatible with Mapping[str, object]