Skip to content

Commit 174c4fd

Browse files
committed
linter
1 parent 4d35379 commit 174c4fd

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/sagemaker/jumpstart/cache.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -465,10 +465,10 @@ def get_specs(self, model_id: str, semantic_version_str: str) -> JumpStartModelS
465465
)
466466
)
467467
return specs.formatted_content
468-
468+
469469
def get_hub_model(self, hub_model_arn: str) -> JumpStartModelSpecs:
470470
"""Return JumpStart-compatible specs for a given Hub model
471-
471+
472472
Args:
473473
hub_model_arn (str): Arn for the Hub model to get specs for
474474
"""
@@ -477,14 +477,14 @@ def get_hub_model(self, hub_model_arn: str) -> JumpStartModelSpecs:
477477
JumpStartCachedContentKey(HubDataType.MODEL, hub_model_arn)
478478
)
479479
return details.formatted_content
480-
480+
481481
def get_hub(self, hub_arn: str) -> Dict[str, Any]:
482482
"""Return descriptive info for a given Hub
483-
483+
484484
Args:
485485
hub_arn (str): Arn for the Hub to get info for
486486
"""
487-
487+
488488
details, _ = self._content_cache.get(JumpStartCachedContentKey(HubDataType.HUB, hub_arn))
489489
return details.formatted_content
490490

0 commit comments

Comments
 (0)