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 4870c0b commit 4dc21f5Copy full SHA for 4dc21f5
src/sagemaker/jumpstart/cache.py
@@ -475,7 +475,9 @@ def get_hub_model(self, hub_model_arn: str) -> JumpStartModelSpecs:
475
hub_model_arn (str): Arn for the Hub model to get specs for
476
"""
477
478
- details, _ = self._content_cache.get(JumpStartCachedContentKey(HubDataType.MODEL, hub_model_arn))
+ details, _ = self._content_cache.get(
479
+ JumpStartCachedContentKey(HubDataType.MODEL, hub_model_arn)
480
+ )
481
return details.formatted_content
482
483
def get_hub(self, hub_arn: str) -> Dict[str, Any]:
0 commit comments