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.
1 parent 8325ce2 commit b1e5b01Copy full SHA for b1e5b01
redis/commands/json/_util.py
@@ -1,3 +1,5 @@
1
-from typing import Any, Dict, List, Union
+from typing import List, Mapping, Union
2
3
-JsonType = Union[str, int, float, bool, None, Dict[str, Any], List[Any]]
+JsonType = Union[
4
+ str, int, float, bool, None, Mapping[str, "JsonType"], List["JsonType"]
5
+]
0 commit comments