mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 12:54:40 +01:00
Formatting change
This commit is contained in:
parent
43f7ace90e
commit
23a6578d6f
1 changed files with 6 additions and 4 deletions
|
|
@ -955,8 +955,9 @@ class ProjectPushItemProcess:
|
|||
"description",
|
||||
"productGroup",
|
||||
}:
|
||||
if key in src_attrib:
|
||||
dst_attrib[key] = src_attrib[key]
|
||||
value = src_attrib.get(key)
|
||||
if value:
|
||||
dst_attrib[key] = value
|
||||
|
||||
product_entity = new_product_entity(
|
||||
product_name,
|
||||
|
|
@ -1001,8 +1002,9 @@ class ProjectPushItemProcess:
|
|||
"description",
|
||||
"intent",
|
||||
}:
|
||||
if key in src_attrib:
|
||||
dst_attrib[key] = src_attrib[key]
|
||||
value = src_attrib.get(key)
|
||||
if value:
|
||||
dst_attrib[key] = value
|
||||
|
||||
if version is None:
|
||||
last_version_entity = ayon_api.get_last_version_by_product_id(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue