Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix unholding sensors that don't have a value #37

Merged
merged 1 commit into from
Jul 17, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions aiocomfoconnect/comfoconnect.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,8 @@ def _unhold_sensors(self):

# Emit the current cached values of the sensors, by now, they should have received a correct update.
for sensor_id, _ in self._sensors.items():
if self._sensors_values[sensor_id] is not None:
self._sensor_callback(sensor_id, self._sensors_values[sensor_id])
if self._sensors_values.get(sensor_id) is not None:
self._sensor_callback(sensor_id, self._sensors_values.get(sensor_id))

async def connect(self, uuid: str):
"""Connect to the bridge."""
Expand Down