mirror of
https://github.com/home-assistant/core.git
synced 2025-07-22 04:37:06 +00:00
Fix implicitly using device name in Yale Smart Living (#96161)
Yale Smart Living device name
This commit is contained in:
parent
7f6309c5cb
commit
d37ac5ace9
@ -43,6 +43,7 @@ class YaleAlarmDevice(YaleAlarmEntity, AlarmControlPanelEntity):
|
||||
AlarmControlPanelEntityFeature.ARM_HOME
|
||||
| AlarmControlPanelEntityFeature.ARM_AWAY
|
||||
)
|
||||
_attr_name = None
|
||||
|
||||
def __init__(self, coordinator: YaleDataUpdateCoordinator) -> None:
|
||||
"""Initialize the Yale Alarm Device."""
|
||||
|
@ -40,6 +40,8 @@ async def async_setup_entry(
|
||||
class YaleDoorlock(YaleEntity, LockEntity):
|
||||
"""Representation of a Yale doorlock."""
|
||||
|
||||
_attr_name = None
|
||||
|
||||
def __init__(
|
||||
self, coordinator: YaleDataUpdateCoordinator, data: dict, code_format: int
|
||||
) -> None:
|
||||
|
Loading…
x
Reference in New Issue
Block a user