mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 12:54:40 +01:00
formatting fixes
This commit is contained in:
parent
b1a4d5dfc5
commit
c4b47950a8
3 changed files with 3 additions and 4 deletions
|
|
@ -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):
|
||||
|
|
|
|||
|
|
@ -37,7 +37,6 @@ def _import_otio():
|
|||
OTIO = opentimelineio
|
||||
|
||||
|
||||
|
||||
class ExportOTIO(LoaderActionPlugin):
|
||||
identifier = "core.export-otio"
|
||||
|
||||
|
|
|
|||
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue