mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-01 08:24:53 +01:00
fix other places using changes
This commit is contained in:
parent
6ca987fdd2
commit
0b65168688
2 changed files with 5 additions and 5 deletions
|
|
@ -78,12 +78,12 @@ class MaxCreator(Creator, MaxCreatorBase):
|
|||
self._add_instance_to_context(created_instance)
|
||||
|
||||
def update_instances(self, update_list):
|
||||
for created_inst, _changes in update_list:
|
||||
for created_inst, changes in update_list:
|
||||
instance_node = created_inst.get("instance_node")
|
||||
|
||||
new_values = {
|
||||
key: new_value
|
||||
for key, (_old_value, new_value) in _changes.items()
|
||||
key: changes[key].new_value
|
||||
for key in changes
|
||||
}
|
||||
imprint(
|
||||
instance_node,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue