Move sia base entity to separate module (#126524)

This commit is contained in:
epenet 2024-09-23 13:58:16 +02:00 committed by GitHub
parent 0bcaa73427
commit 4cb162a068
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 2 additions and 2 deletions

View file

@ -25,7 +25,7 @@ from homeassistant.helpers.entity_platform import AddEntitiesCallback
from homeassistant.helpers.typing import StateType
from .const import CONF_ACCOUNT, CONF_ACCOUNTS, CONF_ZONES, KEY_ALARM, PREVIOUS_STATE
from .sia_entity_base import SIABaseEntity, SIAEntityDescription
from .entity import SIABaseEntity, SIAEntityDescription
_LOGGER = logging.getLogger(__name__)

View file

@ -28,7 +28,7 @@ from .const import (
KEY_SMOKE,
SIA_HUB_ZONE,
)
from .sia_entity_base import SIABaseEntity, SIAEntityDescription
from .entity import SIABaseEntity, SIAEntityDescription
_LOGGER = logging.getLogger(__name__)