From 7dfa424c9bb37b7a450090f1dec93d760a62ad1d Mon Sep 17 00:00:00 2001 From: iLLiCiTiT Date: Fri, 1 Oct 2021 17:24:51 +0200 Subject: [PATCH] remove_instances is empty on autocreators --- openpype/pipeline/create/creator_plugins.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/openpype/pipeline/create/creator_plugins.py b/openpype/pipeline/create/creator_plugins.py index 6e5b4b5991..d7e2d0ffee 100644 --- a/openpype/pipeline/create/creator_plugins.py +++ b/openpype/pipeline/create/creator_plugins.py @@ -290,6 +290,7 @@ class AutoCreator(BaseCreator): """Creator which is automatically triggered without user interaction. Can be used e.g. for `workfile`. - - Should raise 'AutoCreationSkipped' if has nothing to do. """ + def remove_instances(self, instances): + """Skip removement.""" + pass