json-repair 0.47.4__py3-none-any.whl → 0.47.5__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
json_repair/__init__.py CHANGED
@@ -1,3 +1,4 @@
1
+ from .constants import JSONReturnType
1
2
  from .json_repair import from_file, load, loads, repair_json
2
3
 
3
- __all__ = ["from_file", "load", "loads", "repair_json"]
4
+ __all__ = ["from_file", "load", "loads", "repair_json", "JSONReturnType"]
@@ -0,0 +1,4 @@
1
+ from typing import Any
2
+
3
+ JSONReturnType = dict[str, Any] | list[Any] | str | float | int | bool | None
4
+ STRING_DELIMITERS: list[str] = ['"', "'", "“", "”"]