From 764a24384fe8be566407d2816d2f965105b578d6 Mon Sep 17 00:00:00 2001 From: JieguangZhou Date: Mon, 25 Jul 2022 15:46:36 +0800 Subject: [PATCH] [python] add import SageMaker task (#11121) --- .../pydolphinscheduler/src/pydolphinscheduler/tasks/__init__.py | 2 ++ 1 file changed, 2 insertions(+) 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", ]