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 7821b13 commit ce7ea30Copy full SHA for ce7ea30
plugwise_usb/network/__init__.py
@@ -479,9 +479,7 @@ async def _load_discovered_nodes(self) -> bool:
479
_LOGGER.debug("_load_discovered_nodes | load_result=%s", load_result)
480
result_index = 0
481
for mac in nodes_not_loaded:
482
- if load_result[result_index]:
483
- await self._notify_node_event_subscribers(NodeEvent.LOADED, mac)
484
- else:
+ if not load_result[result_index]:
485
_LOGGER.debug(
486
"_load_discovered_nodes | Load request for %s failed", mac
487
)
0 commit comments