fix values loop

This commit is contained in:
Jakub Trllo 2024-10-09 14:32:47 +02:00
parent a2170a76fe
commit b0001f9a58

View file

@ -312,7 +312,7 @@ def _merge_attr_defs(
src_item_values = {
item["value"]
for item in attr_def_src
for item in attr_def_src.items
}
for item in attr_def_new.items:
if item["value"] not in src_item_values: