Skip to content

Commit 5ca3db9

Browse files
committed
Blacked
1 parent 2e77554 commit 5ca3db9

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

plugwise/__init__.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -529,7 +529,9 @@ async def async_update(self) -> PlugwiseData:
529529
"""Perform an incremental update for updating the various device states."""
530530
# Perform a full update at day-change
531531
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.")
532+
LOGGER.debug(
533+
"Performing daily full-update, reload the Plugwise integration when a single entity becomes unavailable."
534+
)
533535
self._previous = new
534536
self.gw_data: GatewayData = {}
535537
self.gw_devices: dict[str, DeviceData] = {}

0 commit comments

Comments
 (0)