Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@
- PR [337](https://github.com/plugwise/python-plugwise-usb/pull/337): Improve node removal, remove and reset the node as executed by Source, and remove the cache-file.
- PR [342](https://github.com/plugwise/python-plugwise-usb/pull/342): Improve node_type chaching.
- PR [343](https://github.com/plugwise/python-plugwise-usb/pull/343): Improve writing of cache-files.
- PR [344](https://github.com/plugwise/python-plugwise-usb/pull/344): Don't store plus-device in nodetypes cache
- PR [344](https://github.com/plugwise/python-plugwise-usb/pull/344): Don't store plus-device in nodetypes cache.
- PR [348](https://github.com/plugwise/python-plugwise-usb/pull/348): Fix broken auto-joining.

## 0.46.0 - 2025-09-12

Expand Down
2 changes: 0 additions & 2 deletions plugwise_usb/network/registry.py
Original file line number Diff line number Diff line change
Expand Up @@ -263,8 +263,6 @@ async def register_node(self, mac: str) -> None:
await request.send()
except StickError as exc:
raise NodeError(f"{exc}") from exc
if self.update_network_registration(mac):
await self._exec_node_discover_callback(mac, None, False)

async def unregister_node(self, node: PlugwiseNode) -> None:
"""Unregister node from current Plugwise network."""
Expand Down