Files
mnote/wolai-backend/.venv312/Lib/site-packages/json_repair/utils/constants.py
T

5 lines
158 B
Python
Raw Normal View History

2025-12-08 19:56:24 +08:00
from typing import Any
JSONReturnType = dict[str, Any] | list[Any] | str | float | int | bool | None
STRING_DELIMITERS: list[str] = ['"', "'", "“", "”"]