moved avalon creators and added legacy prefix

This commit is contained in:
Jakub Trllo 2022-03-08 17:31:16 +01:00
parent ff79836704
commit 7600590f7c
3 changed files with 177 additions and 2 deletions

View file

@ -4,7 +4,12 @@ from .create import (
BaseCreator,
Creator,
AutoCreator,
CreatedInstance
CreatedInstance,
CreatorError,
LegacyCreator,
legacy_create,
)
from .publish import (
@ -22,6 +27,12 @@ __all__ = (
"AutoCreator",
"CreatedInstance",
"CreatorError",
# Legacy creation
"LegacyCreator",
"legacy_create",
"PublishValidationError",
"KnownPublishError",
"OpenPypePyblishPluginMixin"