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 631a16e commit 1e448a7Copy full SHA for 1e448a7
plugwise/__init__.py
@@ -515,7 +515,7 @@ async def _update_domain_objects(self) -> None:
515
async def async_update(self) -> PlugwiseData:
516
"""Perform an incremental update for updating the various device states."""
517
# Perform a full update at day-change
518
- if (new := dt.datetime.now().strftime('%w')) != self._previous:
+ if (new := dt.datetime.now().strftime("%w")) != self._previous:
519
self._previous = new
520
await self._full_update_device()
521
self.get_all_devices()
0 commit comments