diff --git a/client/ayon_core/pipeline/actions/loader.py b/client/ayon_core/pipeline/actions/loader.py index 13f243bf66..92de9c6cf8 100644 --- a/client/ayon_core/pipeline/actions/loader.py +++ b/client/ayon_core/pipeline/actions/loader.py @@ -823,7 +823,7 @@ class LoaderSimpleActionPlugin(LoaderActionPlugin): pass @abstractmethod - def process( + def execute_simple_action( self, selection: LoaderActionSelection, form_values: dict[str, Any], @@ -861,4 +861,4 @@ class LoaderSimpleActionPlugin(LoaderActionPlugin): data: Optional[DataType], form_values: dict[str, Any], ) -> Optional[LoaderActionResult]: - return self.process(selection, form_values) + return self.execute_simple_action(selection, form_values) diff --git a/client/ayon_core/plugins/loader/export_otio.py b/client/ayon_core/plugins/loader/export_otio.py index f8cdbed0a5..c86a72700e 100644 --- a/client/ayon_core/plugins/loader/export_otio.py +++ b/client/ayon_core/plugins/loader/export_otio.py @@ -56,7 +56,7 @@ class ExportOTIO(LoaderSimpleActionPlugin): return selection.versions_selected() - def process( + def execute_simple_action( self, selection: LoaderActionSelection, form_values: dict[str, Any],