Skip to content

Commit 8532613

Browse files
chenxyEthanShouhanCheng
authored andcommitted
feature: Add EMRStep support in Sagemaker pipeline
1 parent 7e5b133 commit 8532613

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/sagemaker/workflow/properties.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ class PropertiesMeta(type):
3232
_primitive_types = {"string", "boolean", "integer", "float"}
3333

3434
def __new__(mcs, *args, **kwargs):
35-
"""Loads up the shapes from the botocore sagemaker service model."""
35+
"""Loads up the shapes from the botocore service model."""
3636
if len(mcs._shapes_map.keys()) == 0:
3737
loader = botocore.loaders.Loader()
3838

@@ -58,8 +58,8 @@ def __init__(
5858
5959
Args:
6060
path (str): The parent path of the Properties instance.
61-
shape_name (str): The botocore sagemaker service model shape name.
62-
shape_names (str): A List of the botocore sagemaker service model shape name.
61+
shape_name (str): The botocore service model shape name.
62+
shape_names (str): A List of the botocore service model shape name.
6363
"""
6464
self._path = path
6565
shape_names = [] if shape_names is None else shape_names

0 commit comments

Comments
 (0)