Skip to content
Snippets Groups Projects
Commit 11afc659 authored by Piotr Maślanka's avatar Piotr Maślanka
Browse files

v2.3.13

parent 84d6068e
No related branches found
No related tags found
No related merge requests found
__version__ = '2.3.13rc1' __version__ = '2.3.13'
...@@ -75,11 +75,8 @@ def update(tree1, tree2): ...@@ -75,11 +75,8 @@ def update(tree1, tree2):
if isinstance(tree1, list) and isinstance(tree2, list): if isinstance(tree1, list) and isinstance(tree2, list):
output_list = tree1 output_list = tree1
for v_b in tree2: for v_b in tree2:
logger.warning(f'Processing {v_b}')
for i, v_a in enumerate(output_list): for i, v_a in enumerate(output_list):
logger.warning(f'Comparing {v_b} against {v_a}')
if are_equal(v_b, v_a): if are_equal(v_b, v_a):
logger.warning(f'They be equal')
output_list[i] = v_b output_list[i] = v_b
break break
else: 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