Remove entity description mixin in Screenlogic (#112935)
* Remove entity description mixin in Screenlogic * Fix
This commit is contained in:
parent
5e530fc42e
commit
70f3da93d4
7 changed files with 18 additions and 39 deletions
|
@ -33,14 +33,14 @@ from .util import cleanup_excluded_entity
|
|||
_LOGGER = logging.getLogger(__name__)
|
||||
|
||||
|
||||
@dataclasses.dataclass(frozen=True)
|
||||
@dataclasses.dataclass(frozen=True, kw_only=True)
|
||||
class ScreenLogicBinarySensorDescription(
|
||||
BinarySensorEntityDescription, ScreenLogicEntityDescription
|
||||
):
|
||||
"""A class that describes ScreenLogic binary sensor eneites."""
|
||||
|
||||
|
||||
@dataclasses.dataclass(frozen=True)
|
||||
@dataclasses.dataclass(frozen=True, kw_only=True)
|
||||
class ScreenLogicPushBinarySensorDescription(
|
||||
ScreenLogicBinarySensorDescription, ScreenLogicPushEntityDescription
|
||||
):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue