From df29a9f81a3b9bb0c36651b11d778583b0e662c0 Mon Sep 17 00:00:00 2001 From: iLLiCiTiT Date: Sun, 16 Jan 2022 16:17:37 +0100 Subject: [PATCH] fixed imports --- openpype/hosts/aftereffects/api/__init__.py | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/openpype/hosts/aftereffects/api/__init__.py b/openpype/hosts/aftereffects/api/__init__.py index a7bbd8e604..f1a7e38ddb 100644 --- a/openpype/hosts/aftereffects/api/__init__.py +++ b/openpype/hosts/aftereffects/api/__init__.py @@ -11,8 +11,9 @@ from .launch_logic import ( from .pipeline import ( ls, - Creator, + get_asset_settings, install, + uninstall, list_instances, remove_instance, containerise @@ -33,7 +34,8 @@ from .lib import ( ) from .plugin import ( - AfterEffectsLoader + AfterEffectsLoader, + Creator ) @@ -44,8 +46,9 @@ __all__ = [ # pipeline "ls", - "Creator", + "get_asset_settings", "install", + "uninstall", "list_instances", "remove_instance", "containerise", @@ -63,4 +66,5 @@ __all__ = [ # plugin "AfterEffectsLoader", + "Creator", ]