Skip to content

Commit 0a34feb

Browse files
committed
Indent
1 parent 2da264c commit 0a34feb

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

construct/sagemaker_endpoint_construct.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ def __init__(self, scope: Construct, construct_id: str,
2323
super().__init__(scope, construct_id)
2424

2525
model = sagemaker.CfnModel(self, f"{model_name}-Model",
26-
execution_role_arn= role_arn,
27-
containers=[
28-
sagemaker.CfnModel.ContainerDefinitionProperty(
26+
execution_role_arn= role_arn,
27+
containers=[
28+
sagemaker.CfnModel.ContainerDefinitionProperty(
2929
image= model_docker_image,
3030
environment= environment,
3131
mode="SingleModel",
@@ -38,7 +38,7 @@ def __init__(self, scope: Construct, construct_id: str,
3838
)
3939
),
4040
)
41-
],
41+
],
4242
model_name= f"{project_prefix}-{model_name}-Model",
4343
)
4444

0 commit comments

Comments
 (0)