Skip to content

Commit b75c656

Browse files
authored
Ignore Binding entries when creating a backup (#257)
1 parent 353b94e commit b75c656

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

zigpy_znp/znp/security.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,10 @@ async def read_devices(
266266
t.EUI64.convert("FF:FF:FF:FF:FF:FF:FF:FF"),
267267
):
268268
continue
269-
elif entry.type == t.AddrMgrUserType.Default:
269+
elif entry.type in (
270+
t.AddrMgrUserType.Default,
271+
t.AddrMgrUserType.Binding,
272+
):
270273
continue
271274
elif entry.type in (
272275
t.AddrMgrUserType.Assoc,

0 commit comments

Comments
 (0)