From c4b47950a8fd944dd4412e2ebb6fd13df2fc21e2 Mon Sep 17 00:00:00 2001 From: Jakub Trllo <43494761+iLLiCiTiT@users.noreply.github.com> Date: Mon, 25 Aug 2025 18:07:12 +0200 Subject: [PATCH] formatting fixes --- client/ayon_core/plugins/loader/delete_old_versions.py | 4 +++- client/ayon_core/plugins/loader/export_otio.py | 1 - client/ayon_core/tools/loader/models/actions.py | 2 -- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/client/ayon_core/plugins/loader/delete_old_versions.py b/client/ayon_core/plugins/loader/delete_old_versions.py index b0905954f1..69b93cbb32 100644 --- a/client/ayon_core/plugins/loader/delete_old_versions.py +++ b/client/ayon_core/plugins/loader/delete_old_versions.py @@ -300,7 +300,9 @@ class DeleteOldVersions(LoaderActionPlugin): publish_folder = os.path.dirname(filepath) if remove_publish_folder: if os.path.exists(publish_folder): - shutil.rmtree(publish_folder, ignore_errors=True) + shutil.rmtree( + publish_folder, ignore_errors=True + ) continue if os.path.exists(filepath): diff --git a/client/ayon_core/plugins/loader/export_otio.py b/client/ayon_core/plugins/loader/export_otio.py index 6a9acc9730..b23021fc11 100644 --- a/client/ayon_core/plugins/loader/export_otio.py +++ b/client/ayon_core/plugins/loader/export_otio.py @@ -37,7 +37,6 @@ def _import_otio(): OTIO = opentimelineio - class ExportOTIO(LoaderActionPlugin): identifier = "core.export-otio" diff --git a/client/ayon_core/tools/loader/models/actions.py b/client/ayon_core/tools/loader/models/actions.py index 684adf36a9..90f3613c24 100644 --- a/client/ayon_core/tools/loader/models/actions.py +++ b/client/ayon_core/tools/loader/models/actions.py @@ -13,7 +13,6 @@ from ayon_core.lib import NestedCacheItem, Logger from ayon_core.pipeline.actions import ( LoaderActionsContext, LoaderActionSelection, - SelectionEntitiesCache, ) from ayon_core.pipeline.load import ( discover_loader_plugins, @@ -766,7 +765,6 @@ class LoaderActionsModel: action_items.append(item) return action_items - def _get_loader_action_items( self, project_name: str,