Skip to content
Snippets Groups Projects

Package module

Merged Etienne Ferriere requested to merge topic/13.0/TG-1015 into branch/13.0
@@ -256,7 +256,7 @@
if dimension in dest_dim:
dest_slots = dest_dim[dimension]
slots_number = len(slots)
for i, dest_slot in enumerate(dest_slots):
for i, _dest_slot in enumerate(dest_slots):
if i < slots_number:
slot = slots[i]
add_field()
@@ -406,7 +406,7 @@
parent = parent_matches[0]
elem = parent.xpath("//field[{cond}]".format(cond=condition))[0]
for index, child in enumerate(parent):
for _index, child in enumerate(parent):
if child == elem:
break
next_children = parent[index + 1 :] # noqa: E203
Loading