initial commit

This commit is contained in:
2022-12-20 21:26:47 +01:00
commit 2962a6db69
722 changed files with 63886 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
"""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"]