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.
load_devices
ControllerApplication.load_network_info
1 parent ef3c68c commit f2aa018Copy full SHA for f2aa018
zigpy_znp/zigbee/application.py
@@ -1102,12 +1102,12 @@ async def _register_endpoints(self) -> None:
1102
RspStatus=t.Status.SUCCESS,
1103
)
1104
1105
- async def load_network_info(self) -> None:
+ async def load_network_info(self, *, load_devices=False) -> None:
1106
"""
1107
Loads network information from NVRAM.
1108
1109
1110
- await self._znp.load_network_info()
+ await self._znp.load_network_info(load_devices=load_devices)
1111
1112
self.state.node_information = self._znp.node_info
1113
self.state.network_information = self._znp.network_info
0 commit comments