mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-01 16:34:53 +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",
|
"description",
|
||||||
"productGroup",
|
"productGroup",
|
||||||
}:
|
}:
|
||||||
if key in src_attrib:
|
value = src_attrib.get(key)
|
||||||
dst_attrib[key] = src_attrib[key]
|
if value:
|
||||||
|
dst_attrib[key] = value
|
||||||
|
|
||||||
product_entity = new_product_entity(
|
product_entity = new_product_entity(
|
||||||
product_name,
|
product_name,
|
||||||
|
|
@ -1001,8 +1002,9 @@ class ProjectPushItemProcess:
|
||||||
"description",
|
"description",
|
||||||
"intent",
|
"intent",
|
||||||
}:
|
}:
|
||||||
if key in src_attrib:
|
value = src_attrib.get(key)
|
||||||
dst_attrib[key] = src_attrib[key]
|
if value:
|
||||||
|
dst_attrib[key] = value
|
||||||
|
|
||||||
if version is None:
|
if version is None:
|
||||||
last_version_entity = ayon_api.get_last_version_by_product_id(
|
last_version_entity = ayon_api.get_last_version_by_product_id(
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue