Skip to content

Commit

Permalink
fix indent
Browse files Browse the repository at this point in the history
  • Loading branch information
jrsndlr committed Sep 29, 2024
1 parent c0591af commit bf7dfc0
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions client/ayon_traypublisher/plugins/create/create_csv_ingest.py
Original file line number Diff line number Diff line change
Expand Up @@ -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())
Expand Down

0 comments on commit bf7dfc0

Please sign in to comment.