mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-01 16:34:53 +01:00
fix dictionary loop
This commit is contained in:
parent
26960b789f
commit
d4a8ada569
1 changed files with 1 additions and 2 deletions
|
|
@ -408,8 +408,7 @@ class LoaderActionsModel:
|
|||
|
||||
project_entity = ayon_api.get_project(project_name)
|
||||
|
||||
for version_entity in version_entities_by_id:
|
||||
version_id = version_entity["id"]
|
||||
for version_id, version_entity in version_entities_by_id.items():
|
||||
product_id = version_entity["productId"]
|
||||
product_entity = product_entities_by_id[product_id]
|
||||
folder_id = product_entity["folderId"]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue