Files
geMoldInsight/venv/lib/python3.11/site-packages/redis/commands/json/_util.py
T
2026-02-12 23:27:48 +08:00

6 lines
137 B
Python

from typing import List, Mapping, Union
JsonType = Union[
str, int, float, bool, None, Mapping[str, "JsonType"], List["JsonType"]
]