Skip to content

Commit e9e99c6

Browse files
committed
fix: docstring
1 parent c21d2e1 commit e9e99c6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/sagemaker/jumpstart/types.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -340,7 +340,7 @@ def from_json(self, json_obj: Optional[Dict[str, Any]]) -> None:
340340
self.variants: dict = json_obj["variants"]
341341

342342
def to_json(self) -> Dict[str, Any]:
343-
"""Returns json representation of JumpStartPredictorSpecs object."""
343+
"""Returns json representation of JumpStartInstanceTypeVariants object."""
344344
json_obj = {att: getattr(self, att) for att in self.__slots__ if hasattr(self, att)}
345345
return json_obj
346346

0 commit comments

Comments
 (0)