Skip to content

Commit

Permalink
Ignore Binding entries when creating a backup
Browse files Browse the repository at this point in the history
  • Loading branch information
puddly committed Oct 28, 2024
1 parent 353b94e commit ba1d352
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion zigpy_znp/znp/security.py
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,10 @@ async def read_devices(
t.EUI64.convert("FF:FF:FF:FF:FF:FF:FF:FF"),
):
continue
elif entry.type == t.AddrMgrUserType.Default:
elif entry.type in (
t.AddrMgrUserType.Default,
t.AddrMgrUserType.Binding,
):
continue
elif entry.type in (
t.AddrMgrUserType.Assoc,
Expand Down

0 comments on commit ba1d352

Please sign in to comment.