Skip to content

Commit 1e448a7

Browse files
committed
Blacked
1 parent 631a16e commit 1e448a7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plugwise/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -515,7 +515,7 @@ async def _update_domain_objects(self) -> None:
515515
async def async_update(self) -> PlugwiseData:
516516
"""Perform an incremental update for updating the various device states."""
517517
# Perform a full update at day-change
518-
if (new := dt.datetime.now().strftime('%w')) != self._previous:
518+
if (new := dt.datetime.now().strftime("%w")) != self._previous:
519519
self._previous = new
520520
await self._full_update_device()
521521
self.get_all_devices()

0 commit comments

Comments
 (0)