We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2e77554 commit 5ca3db9Copy full SHA for 5ca3db9
plugwise/__init__.py
@@ -529,7 +529,9 @@ async def async_update(self) -> PlugwiseData:
529
"""Perform an incremental update for updating the various device states."""
530
# Perform a full update at day-change
531
if (new := dt.datetime.now().strftime("%w")) != self._previous:
532
- LOGGER.debug("Performing daily full-update, reload the Plugwise integration when a single entity becomes unavailable.")
+ LOGGER.debug(
533
+ "Performing daily full-update, reload the Plugwise integration when a single entity becomes unavailable."
534
+ )
535
self._previous = new
536
self.gw_data: GatewayData = {}
537
self.gw_devices: dict[str, DeviceData] = {}
0 commit comments