Reload ESPHome config entries when dashboard info received (#86174)

This commit is contained in:
Paulus Schoutsen 2023-01-18 11:59:55 -05:00 committed by GitHub
parent c40c37e9ee
commit 29337bc6eb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
10 changed files with 106 additions and 70 deletions

View file

@ -13,10 +13,10 @@ from homeassistant.core import HomeAssistant
from homeassistant.helpers.json import JSONEncoder
from homeassistant.helpers.storage import Store
from .const import DOMAIN
from .entry_data import RuntimeEntryData
STORAGE_VERSION = 1
DOMAIN = "esphome"
MAX_CACHED_SERVICES = 128
_DomainDataSelfT = TypeVar("_DomainDataSelfT", bound="DomainData")