We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Currently y'all declare JsonType:
JsonType = Union[str, int, float, bool, None, Dict[str, Any], List[Any]]
I think would be better declared as
JsonType = Union[str, int, float, bool, None, Mapping[str, "JsonType"], List["JsonType"]]
Any thoughts?