Skip to content

Commit

Permalink
fix html tag (#8336)
Browse files Browse the repository at this point in the history
  • Loading branch information
cxznmhdcxz authored Dec 5, 2024
1 parent 378cd0f commit 307bc6d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/devcenter/azext_devcenter/_params.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,19 +21,19 @@

dev_center_type = CLIArgumentType(
options_list=["--dev-center-name", "--dev-center", "-d"],
help="The name of the dev center. Use az configure -d dev-center=<dev_center_name> to configure a default.",
help="The name of the dev center. Use `az configure -d dev-center=<dev_center_name>` to configure a default.",
configured_default="dev-center",
)

project_type = CLIArgumentType(
options_list=["--project", "--project-name"],
help="The name of the project. Use az configure -d project=<project_name> to configure a default.",
help="The name of the project. Use `az configure -d project=<project_name>` to configure a default.",
configured_default="project",
)

endpoint = CLIArgumentType(
options_list=["--endpoint"],
help="The API endpoint for the developer resources. Use az configure -d endpoint=<endpoint_uri> to configure a default.",
help="The API endpoint for the developer resources. Use `az configure -d endpoint=<endpoint_uri>` to configure a default.",
configured_default="endpoint",
)

Expand Down

0 comments on commit 307bc6d

Please sign in to comment.