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 3a2ed5c commit a160338Copy full SHA for a160338
plugwise/__init__.py
@@ -529,7 +529,7 @@ 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
new = dt.datetime.now().strftime("%w")
532
- if new != self._previous:
+ if new != self._previous: # pylint: disable=consider-using-assignment-expr
533
LOGGER.debug(
534
"Performing daily full-update, reload the Plugwise integration when a single entity becomes unavailable."
535
)
0 commit comments