mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 12:54:40 +01:00
fixed dict iteration for attr_value
This commit is contained in:
parent
e71da0000c
commit
31e02669ab
1 changed files with 1 additions and 1 deletions
|
|
@ -719,7 +719,7 @@ def apply_attributes(attributes, nodes_by_id):
|
|||
for attr_data in attributes:
|
||||
node = nodes_by_id[attr_data["uuid"]]
|
||||
attr_value = attr_data["attributes"]
|
||||
for attr, value in attr_value:
|
||||
for attr, value in attr_value.items():
|
||||
set_attribute(attr, value, node)
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue