Skip to content

Commit ba5ad22

Browse files
author
Rohan Gujarathi
committed
fix: update the doc for Join function
1 parent b334d4e commit ba5ad22

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/sagemaker/workflow/functions.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,10 @@ class Join(PipelineVariable):
3232
bucket = ParameterString('bucket', default_value='my-bucket')
3333
3434
TrainingInput(
35-
s3_data=Join(on='/', ['s3:/', bucket, ExecutionVariables.PIPELINE_EXECUTION_ID]),
35+
s3_data=Join(
36+
on='/',
37+
values=['s3:/', bucket, ExecutionVariables.PIPELINE_EXECUTION_ID]
38+
),
3639
content_type="text/csv")
3740
3841
Attributes:

0 commit comments

Comments
 (0)