diff --git a/client/ayon_core/pipeline/create/creator_plugins.py b/client/ayon_core/pipeline/create/creator_plugins.py index bf8382d430..2de9c6f8a6 100644 --- a/client/ayon_core/pipeline/create/creator_plugins.py +++ b/client/ayon_core/pipeline/create/creator_plugins.py @@ -394,7 +394,7 @@ class BaseCreator: """Helper method to remove instance from create context. Instances must be removed from DCC workfile metadat aand from create - context in which plugin is existing at the moment of removement to + context in which plugin is existing at the moment of removal to propagate the change without restarting create context. Args: @@ -454,7 +454,7 @@ class BaseCreator: @abstractmethod def remove_instances(self, instances): - """Method called on instance removement. + """Method called on instance removal. Can also remove instance metadata from context but should return 'True' if did so. @@ -808,7 +808,7 @@ class AutoCreator(BaseCreator): """ def remove_instances(self, instances): - """Skip removement.""" + """Skip removal.""" pass