Skip to content

Commit b58d6e5

Browse files
author
Rohan Gujarathi
committed
Doc: Fix pipeline definition function return type
1 parent 868894c commit b58d6e5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/sagemaker/workflow/pipeline.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -382,7 +382,7 @@ def start(
382382
sagemaker_session=self.sagemaker_session,
383383
)
384384

385-
def definition(self) -> str:
385+
def definition(self) -> Dict[str, Any]:
386386
"""Converts a request structure to string representation for workflow service calls."""
387387
compiled_steps = StepsCompiler(
388388
pipeline_name=self.name,

0 commit comments

Comments
 (0)