mirror of
https://github.com/home-assistant/core.git
synced 2025-12-03 14:38:06 +00:00
Import EVENT_LABS_UPDATED directly from homeassistant.const in labs/__init__.py and labs/websocket_api.py instead of re-exporting from labs/const.py. Co-authored-by: balloob <1444314+balloob@users.noreply.github.com>
15 lines
285 B
Python
15 lines
285 B
Python
"""Constants for the Home Assistant Labs integration."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from homeassistant.util.hass_dict import HassKey
|
|
|
|
from .models import LabsData
|
|
|
|
DOMAIN = "labs"
|
|
|
|
STORAGE_KEY = "core.labs"
|
|
STORAGE_VERSION = 1
|
|
|
|
LABS_DATA: HassKey[LabsData] = HassKey(DOMAIN)
|