mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-01 08:24:53 +01:00
Typing
At least some, dont know how to import NewFolderDict
This commit is contained in:
parent
ec2a18ab4a
commit
062f756413
1 changed files with 5 additions and 5 deletions
|
|
@ -5,7 +5,7 @@ import itertools
|
||||||
import sys
|
import sys
|
||||||
import traceback
|
import traceback
|
||||||
import uuid
|
import uuid
|
||||||
from typing import Optional, Dict
|
from typing import Optional, Dict, Any
|
||||||
|
|
||||||
import ayon_api
|
import ayon_api
|
||||||
from ayon_api.utils import create_entity_id
|
from ayon_api.utils import create_entity_id
|
||||||
|
|
@ -650,10 +650,10 @@ class ProjectPushItemProcess:
|
||||||
|
|
||||||
def _create_folder(
|
def _create_folder(
|
||||||
self,
|
self,
|
||||||
src_folder_entity,
|
src_folder_entity: Dict[str, Any],
|
||||||
project_entity,
|
project_entity: Dict[str, Any],
|
||||||
parent_folder_entity,
|
parent_folder_entity: Dict[str, Any],
|
||||||
folder_name
|
folder_name: str
|
||||||
):
|
):
|
||||||
parent_id = None
|
parent_id = None
|
||||||
if parent_folder_entity:
|
if parent_folder_entity:
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue