Skip to content

Commit

Permalink
Rename Airzone system_zone_id to system_id (home-assistant#121931)
Browse files Browse the repository at this point in the history
  • Loading branch information
Noltari authored Jul 14, 2024
1 parent ab945ee commit 9f53d0c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions homeassistant/components/airzone/binary_sensor.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down

0 comments on commit 9f53d0c

Please sign in to comment.