Freeze integration entity descriptions (#105984)

Co-authored-by: J. Nick Koston <nick@koston.org>
This commit is contained in:
Erik Montnemery 2023-12-19 03:28:13 +01:00 committed by GitHub
parent ae8db120e8
commit 0c2485bc03
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
462 changed files with 806 additions and 804 deletions

View file

@ -32,14 +32,14 @@ from .util import cleanup_excluded_entity
_LOGGER = logging.getLogger(__name__)
@dataclasses.dataclass
@dataclasses.dataclass(frozen=True)
class ScreenLogicBinarySensorDescription(
BinarySensorEntityDescription, ScreenLogicEntityDescription
):
"""A class that describes ScreenLogic binary sensor eneites."""
@dataclasses.dataclass
@dataclasses.dataclass(frozen=True)
class ScreenLogicPushBinarySensorDescription(
ScreenLogicBinarySensorDescription, ScreenLogicPushEntityDescription
):