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 823c6e4 commit 746526aCopy full SHA for 746526a
plugwise_usb/network/registry.py
@@ -282,12 +282,12 @@ async def unregister_node(self, mac: str) -> None:
282
request = NodeRemoveRequest(self._send_to_controller, self._mac_nc, mac)
283
if (response := await request.send()) is None:
284
raise NodeError(
285
- f"The Zigbee network coordinator '{self._mac_nc}'"
+ f"The Zigbee network coordinator '{self._mac_nc!r}'"
286
+ f" did not respond to unregister node '{mac}'"
287
)
288
if response.status.value != 1:
289
290
291
+ f" failed to unregister node '{mac}'"
292
293
if (address := self.network_address(mac)) is not None:
0 commit comments