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 b6ae3d4 commit d653eb3Copy full SHA for d653eb3
plugwise/__init__.py
@@ -518,6 +518,8 @@ async def async_update(self) -> PlugwiseData:
518
# Perform a full update at day-change
519
if (new := dt.datetime.now().strftime("%w")) != self._previous:
520
self._previous = new
521
+ self.gw_data: GatewayData = {}
522
+ self.gw_devices: dict[str, DeviceData] = {}
523
await self._full_update_device()
524
self.get_all_devices()
525
# Otherwise perform an incremental update
0 commit comments