This commit is contained in:
2023-02-26 11:43:30 +01:00
parent 5128fa7358
commit 29a74e2546
198 changed files with 17865 additions and 20642 deletions

View File

@@ -47,8 +47,8 @@ class HyundaiKiaConnectLock(LockEntity, HyundaiKiaConnectEntity):
def is_locked(self):
return getattr(self.vehicle, "is_locked")
async def async_lock(self):
async def async_lock(self, **kwargs: Any):
await self.coordinator.async_lock_vehicle(self.vehicle.id)
async def async_unlock(self):
async def async_unlock(self, **kwargs: Any):
await self.coordinator.async_unlock_vehicle(self.vehicle.id)