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 02ec48b commit f853846Copy full SHA for f853846
plugwise_usb/network/registry.py
@@ -252,7 +252,7 @@ async def unregister_node(self, mac: str) -> None:
252
if not validate_mac(mac):
253
raise NodeError(f"MAC {mac} invalid")
254
255
- if mac not in self._registry():
+ if mac not in self._registry:
256
raise NodeError(f"No existing Node ({mac}) found to unregister")
257
258
request = NodeRemoveRequest(self._send_to_controller, self._mac_nc, mac)
0 commit comments