Commit e187752d authored by oroulet's avatar oroulet

remove unnecessary assert. the length of results might be different from the...

remove unnecessary assert. the length of results might be different from the length of arguments, for example for delete since we are recursive
parent e2989781
......@@ -591,7 +591,8 @@ class Node:
Delete node from address space
"""
results = await delete_nodes(self.server, [self], recursive, delete_references)
_check_results(results)
for r in results:
r.check()
def _fill_delete_reference_item(self, rdesc, bidirectional=False):
ditem = ua.DeleteReferencesItem()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment