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 6d0a177 commit 9db952cCopy full SHA for 9db952c
zigpy_znp/zigbee/application.py
@@ -1095,12 +1095,12 @@ async def _register_endpoints(self) -> None:
1095
RspStatus=t.Status.SUCCESS,
1096
)
1097
1098
- async def load_network_info(self) -> None:
+ async def load_network_info(self, *, load_devices=False) -> None:
1099
"""
1100
Loads network information from NVRAM.
1101
1102
1103
- await self._znp.load_network_info()
+ await self._znp.load_network_info(load_devices=load_devices)
1104
1105
self.state.node_information = self._znp.node_info
1106
self.state.network_information = self._znp.network_info
0 commit comments