Skip to content
Snippets Groups Projects
Commit b84f1351 authored by Etienne Ferriere's avatar Etienne Ferriere
Browse files

Corrected the typing errors linked to a correction for ``black``.

parent 9c777f9e
No related branches found
No related tags found
1 merge request!32Corrected the typing errors linked to a correction for ``black``.
Pipeline #79744 passed
......@@ -233,7 +233,7 @@
def add_field():
src = self.format_field_name(slot, prefix, suffix)
dest = self.format_field_name(dest_slot, dest_prefix, dest_suffix)
dest = self.format_field_name(_dest_slot, dest_prefix, dest_suffix)
if src in source:
try:
res[dest] = source[src].id
......@@ -246,7 +246,7 @@
if dest_model is None or dest_model == model:
for slots in list(src_dim.values()):
for slot in slots:
dest_slot = slot
_dest_slot = slot
add_field()
else:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment