diff --git a/dolphinscheduler-python/pydolphinscheduler/src/pydolphinscheduler/tasks/__init__.py b/dolphinscheduler-python/pydolphinscheduler/src/pydolphinscheduler/tasks/__init__.py index dd46c912df..d49a1d394c 100644 --- a/dolphinscheduler-python/pydolphinscheduler/src/pydolphinscheduler/tasks/__init__.py +++ b/dolphinscheduler-python/pydolphinscheduler/src/pydolphinscheduler/tasks/__init__.py @@ -25,6 +25,7 @@ from pydolphinscheduler.tasks.http import Http from pydolphinscheduler.tasks.map_reduce import MR from pydolphinscheduler.tasks.procedure import Procedure from pydolphinscheduler.tasks.python import Python +from pydolphinscheduler.tasks.sagemaker import SageMaker from pydolphinscheduler.tasks.shell import Shell from pydolphinscheduler.tasks.spark import Spark from pydolphinscheduler.tasks.sql import Sql @@ -45,4 +46,5 @@ __all__ = [ "Sql", "SubProcess", "Switch", + "SageMaker", ]