mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 12:54:40 +01:00
rename 'process' to 'execute_simple_action'
This commit is contained in:
parent
6d1d1e01d4
commit
d465e4a9b3
2 changed files with 3 additions and 3 deletions
|
|
@ -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)
|
||||
|
|
|
|||
|
|
@ -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],
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue