Skip to content

Commit 6d5f599

Browse files
committed
fix: changing from string
1 parent 9255849 commit 6d5f599

File tree

1 file changed

+1
-1
lines changed
  • src/sagemaker/jumpstart/curated_hub

1 file changed

+1
-1
lines changed

src/sagemaker/jumpstart/curated_hub/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ def create_hub_bucket_if_it_does_not_exist(
189189
def tag_hub_content(hub_content_arn: str, tags: List[TagsDict], session: Session) -> None:
190190
session.add_tags(
191191
ResourceArn=hub_content_arn,
192-
Tags=str(tags)
192+
Tags=tags
193193
)
194194
JUMPSTART_LOGGER.info(f"Added tags to HubContentArn %s: %s", hub_content_arn, TagsDict)
195195

0 commit comments

Comments
 (0)