diff --git a/client/ayon_traypublisher/plugins/create/create_csv_ingest.py b/client/ayon_traypublisher/plugins/create/create_csv_ingest.py index e8b1c28..e055444 100644 --- a/client/ayon_traypublisher/plugins/create/create_csv_ingest.py +++ b/client/ayon_traypublisher/plugins/create/create_csv_ingest.py @@ -460,10 +460,11 @@ def _get_data_from_csv( missing_paths: Set[str] = folder_paths - set(folder_ids.keys()) if missing_paths: folder_ids_by_name: Dict[str, str] = { - folder_entity["path"]: folder_entity["id"] - for folder_entity in ayon_api.get_folders( - project_name, folder_names=missing_paths, fields={"id", "path"} - ) + folder_entity["path"]: folder_entity["id"] + for folder_entity in ayon_api.get_folders( + project_name, + folder_names=missing_paths, fields={"id", "path"} + ) } folder_ids.update(folder_ids_by_name) missing_paths: Set[str] = folder_paths - set(folder_ids.keys())