Skip to content

Commit 3dae224

Browse files
committed
change order of product_base_type argument
1 parent a52c1f9 commit 3dae224

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

ayon_api/operations.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1146,8 +1146,8 @@ def create_product(
11461146
tags: Optional[list[str]] = None,
11471147
status: Optional[str] = None,
11481148
active: Optional[bool] = None,
1149-
product_id: Optional[str] = None,
11501149
product_base_type: Optional[str] = None,
1150+
product_id: Optional[str] = None,
11511151
) -> CreateOperation:
11521152
"""Create new product.
11531153
@@ -1160,9 +1160,9 @@ def create_product(
11601160
tags (Optional[Iterable[str]]): Product tags.
11611161
status (Optional[str]): Product status.
11621162
active (Optional[bool]): Product active state.
1163+
product_base_type (Optional[str]): Product base type.
11631164
product_id (Optional[str]): Product id. If not passed new id is
11641165
generated.
1165-
product_base_type (Optional[str]): Product base type.
11661166
11671167
Returns:
11681168
CreateOperation: Object of create operation.

0 commit comments

Comments
 (0)