Skip to content

Commit c3d9b6b

Browse files
authored
Added missing comma
Fixed invalid code snippet by adding comma in between arguments
1 parent 6fbf5d6 commit c3d9b6b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

articles/machine-learning/how-to-deploy-online-endpoints.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@ endpoint_name = "endpt-" + datetime.datetime.now().strftime("%m%d%H%M%f")
279279
# create an online endpoint
280280
endpoint = ManagedOnlineEndpoint(
281281
name = endpoint_name,
282-
description="this is a sample endpoint"
282+
description="this is a sample endpoint",
283283
auth_mode="key"
284284
)
285285
```

0 commit comments

Comments
 (0)