We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 89932e2 commit 2c36aebCopy full SHA for 2c36aeb
1 file changed
opencolorio_config_aces/config/reference/discover/classify.py
@@ -1509,7 +1509,11 @@ def generate_amf_components(
1509
transform["previousEquivalentTransformIds"]
1510
)
1511
1512
- return {key: sorted(set(value)) for key, value in amf_components.items() if value}
+ return {
1513
+ key: sorted({transform_id for transform_id in transform_ids if transform_id})
1514
+ for key, transform_ids in amf_components.items()
1515
+ if transform_ids
1516
+ }
1517
1518
1519
def filter_amf_components(
0 commit comments