We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 305bdf8 commit 027415fCopy full SHA for 027415f
src/sagemaker/jumpstart/hub/hub.py
@@ -99,12 +99,14 @@ def create(
99
"hub_description": description,
100
"hub_display_name": display_name,
101
"hub_search_keywords": search_keywords,
102
- "tags": tags,
+ "tags": tags
103
}
104
-
+
105
if self.bucket_name:
106
request["s3_storage_config"] = {
107
- "S3OutputPath": (f"s3://{self.bucket_name}/{self.hub_name}-{curr_timestamp}")
+ "S3OutputPath": (
108
+ f"s3://{self.bucket_name}/{self.hub_name}-{curr_timestamp}"
109
+ )
110
111
112
return self._sagemaker_session.create_hub(**request)
0 commit comments