mirror of
https://github.com/home-assistant/core.git
synced 2025-11-13 13:00:11 +00:00
Fix unavailable state for homekit locks and covers (#22390)
This commit is contained in:
@@ -64,11 +64,6 @@ class HomeKitLock(HomeKitEntity, LockDevice):
|
||||
"""Return true if device is locked."""
|
||||
return self._state == STATE_LOCKED
|
||||
|
||||
@property
|
||||
def available(self):
|
||||
"""Return True if entity is available."""
|
||||
return self._state is not None
|
||||
|
||||
async def async_lock(self, **kwargs):
|
||||
"""Lock the device."""
|
||||
await self._set_lock_state(STATE_LOCKED)
|
||||
|
||||
Reference in New Issue
Block a user