Skip to content

Commit 6b9f390

Browse files
author
Malav Shastri
committed
fix linting
1 parent b1f5cd8 commit 6b9f390

File tree

1 file changed

+3
-3
lines changed
  • src/sagemaker/jumpstart/hub

1 file changed

+3
-3
lines changed

src/sagemaker/jumpstart/hub/hub.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -184,15 +184,15 @@ def list_models(self, clear_cache: bool = True, **kwargs) -> Dict[str, Any]:
184184
**{
185185
"hub_name": self.hub_name,
186186
"hub_content_type": HubContentType.MODEL_REFERENCE.value,
187-
**kwargs
187+
**kwargs,
188188
}
189189
)
190190

191191
hub_model_summaries = self._list_and_paginate_models(
192192
**{
193-
"hub_name": self.hub_name,
193+
"hub_name": self.hub_name,
194194
"hub_content_type": HubContentType.MODEL.value,
195-
**kwargs
195+
**kwargs,
196196
}
197197
)
198198
response["hub_content_summaries"] = hub_model_reference_summaries + hub_model_summaries

0 commit comments

Comments
 (0)