From 9f53d0ccd91bcc64007e1e73a5b2e805c9d67c75 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=81lvaro=20Fern=C3=A1ndez=20Rojas?= Date: Mon, 15 Jul 2024 01:39:59 +0200 Subject: [PATCH] Rename Airzone system_zone_id to system_id (#121931) --- homeassistant/components/airzone/binary_sensor.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/homeassistant/components/airzone/binary_sensor.py b/homeassistant/components/airzone/binary_sensor.py index 142e4250d68799..eec78156fe0c51 100644 --- a/homeassistant/components/airzone/binary_sensor.py +++ b/homeassistant/components/airzone/binary_sensor.py @@ -99,12 +99,12 @@ def _async_entity_listener() -> None: coordinator, description, entry, - system_zone_id, - systems_data.get(system_zone_id), + system_id, + systems_data.get(system_id), ) - for system_zone_id in new_systems + for system_id in new_systems for description in SYSTEM_BINARY_SENSOR_TYPES - if description.key in systems_data.get(system_zone_id) + if description.key in systems_data.get(system_id) ) added_systems.update(new_systems)