5 lines
158 B
Python
5 lines
158 B
Python
from typing import Any
|
|
|
|
JSONReturnType = dict[str, Any] | list[Any] | str | float | int | bool | None
|
|
STRING_DELIMITERS: list[str] = ['"', "'", "“", "”"]
|