dump-things-pyclient/dump_things_pyclient/__init__.py
2025-12-08 20:24:07 +01:00

6 lines
113 B
Python

from typing import (
Any,
Union,
)
JSON = Union[dict[str, Any], list[Any], bool, str, int, float, None]