Skip to content
Snippets Groups Projects

Package module

Merged Etienne Ferriere requested to merge topic/13.0/TG-1015 into branch/13.0
@@ -409,8 +409,8 @@
for _index, child in enumerate(parent):
if child == elem:
break
next_children = parent[index + 1 :] # noqa: E203
del parent[index:]
next_children = parent[_index + 1 :] # noqa: E203
del parent[_index:]
# Get all fields that are in the structure but not in the view.
sorted_fields = list(found_fields.items())
Loading