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 bdc2254 commit 9fdaadbCopy full SHA for 9fdaadb
plugwise/__init__.py
@@ -530,8 +530,8 @@ async def async_update(self) -> PlugwiseData:
530
# Perform a full update at day-change
531
day_number = dt.datetime.now().strftime("%w")
532
if (
533
- day_number != self._previous_day_number
534
- ): # pylint: disable=consider-using-assignment-expr
+ day_number != self._previous_day_number # pylint: disable=consider-using-assignment-expr
+ ):
535
LOGGER.debug(
536
"Performing daily full-update, reload the Plugwise integration when a single entity becomes unavailable."
537
)
0 commit comments