usda-hass-config/custom_components/hacs/utils/json.py

11 lines
292 B
Python
Raw Permalink Normal View History

2024-10-01 14:06:39 +00:00
"""JSON utils."""
try:
# Could be removed after 2022.06 is the min version
# But in case Home Assistant changes, keep this try/except here...
from homeassistant.helpers.json import json_loads
except ImportError:
from json import loads as json_loads
__all__ = ["json_loads"]