Skip to content

Commit 94b7347

Browse files
azdev lint fix
1 parent 0d94471 commit 94b7347

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/machinelearningservices/azext_mlv2/manual/commands.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ def load_command_table(self, _):
230230
custom_tmpl = "azext_mlv2.manual.custom.deployment_template#{}"
231231
custom_deployment_template = CliCommandType(operations_tmpl=custom_tmpl)
232232
g.custom_command("list", "ml_deployment_template_list", command_type=custom_deployment_template)
233-
g.custom_command("show", "ml_deployment_template_get", command_type=custom_deployment_template)
233+
g.custom_show_command("show", "ml_deployment_template_show")
234234
g.custom_command("create", "ml_deployment_template_create", supports_no_wait=True,
235235
command_type=custom_deployment_template)
236236
g.generic_update_command(

src/machinelearningservices/azext_mlv2/manual/custom/deployment_template.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ def ml_deployment_template_list(cmd, registry_name=None):
5454
log_and_raise_error(err, debug)
5555

5656

57-
def ml_deployment_template_get(cmd, name, version=None, registry_name=None):
57+
def ml_deployment_template_show(cmd, name, version=None, registry_name=None):
5858
"""Get a specific deployment template by name and version."""
5959
ml_client, debug = get_ml_client(
6060
cli_ctx=cmd.cli_ctx, registry_name=registry_name

0 commit comments

Comments
 (0)