formatting fixes

This commit is contained in:
Jakub Trllo 2025-08-25 18:07:12 +02:00
parent b1a4d5dfc5
commit c4b47950a8
3 changed files with 3 additions and 4 deletions

View file

@ -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):

View file

@ -37,7 +37,6 @@ def _import_otio():
OTIO = opentimelineio
class ExportOTIO(LoaderActionPlugin):
identifier = "core.export-otio"

View file

@ -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,