Verisure unpack (#98605)

This commit is contained in:
Niels Perfors 2023-08-18 10:26:01 +02:00 committed by GitHub
parent d3ee2366b0
commit 89705a22cf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -83,13 +83,16 @@ class VerisureDataUpdateCoordinator(DataUpdateCoordinator):
raise UpdateFailed("Could not read overview") from err
def unpack(overview: list, value: str) -> dict | list:
return next(
(
item["data"]["installation"][value]
for item in overview
if value in item.get("data", {}).get("installation", {})
),
[],
return (
next(
(
item["data"]["installation"][value]
for item in overview
if value in item.get("data", {}).get("installation", {})
),
[],
)
or []
)
# Store data in a way Home Assistant can easily consume it