Skip to content

Commit

Permalink
Code clean up.
Browse files Browse the repository at this point in the history
  • Loading branch information
BGmot committed May 6, 2022
1 parent d50b9e4 commit ec2a766
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/module_utils/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ def helper_compare_lists(l1, l2, diff_dict):
return diff_dict
for i, item in enumerate(l1):
if isinstance(item, dict):
for i2, item2 in enumerate(l2):
for item2 in l2:
diff_dict2 = {}
diff_dict2 = helper_compare_dictionaries(item, item2, diff_dict2)
if len(diff_dict2) == 0:
Expand Down

0 comments on commit ec2a766

Please sign in to comment.