Skip to content

Commit abaf27a

Browse files
committed
fix disallowed-html-tag lint
1 parent 207cad1 commit abaf27a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/spring-cloud/azext_spring_cloud/_help.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -331,7 +331,7 @@
331331

332332
helps['spring-cloud app deployment'] = """
333333
type: group
334-
short-summary: Commands to manage life cycle of deployments of an app in Azure Spring Cloud. More operations on deployments can be done on app level with parameter --deployment. e.g. az spring-cloud app deploy --deployment <staging deployment>
334+
short-summary: Commands to manage life cycle of deployments of an app in Azure Spring Cloud. More operations on deployments can be done on app level with parameter --deployment. e.g. `az spring-cloud app deploy --deployment <staging deployment>`
335335
"""
336336

337337
helps['spring-cloud app deployment list'] = """

src/spring-cloud/azext_spring_cloud/_params.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
validator=validate_env, help="Space-separated environment variables in 'key[=value]' format.", nargs='*')
4444
build_env_type = CLIArgumentType(
4545
validator=validate_build_env, help="Space-separated environment variables in 'key[=value]' format.", nargs='*')
46-
service_name_type = CLIArgumentType(options_list=['--service', '-s'], help='Name of Azure Spring Cloud, you can configure the default service using az configure --defaults spring-cloud=<name>.', configured_default='spring-cloud')
46+
service_name_type = CLIArgumentType(options_list=['--service', '-s'], help='Name of Azure Spring Cloud, you can configure the default service using `az configure --defaults spring-cloud=<name>`.', configured_default='spring-cloud')
4747
app_name_type = CLIArgumentType(help='App name, you can configure the default app using az configure --defaults spring-cloud-app=<name>.', validator=validate_app_name, configured_default='spring-cloud-app')
4848
sku_type = CLIArgumentType(arg_type=get_enum_type(['Basic', 'Standard', 'Enterprise']), help='Name of SKU. Enterprise is still in Preview.')
4949
source_path_type = CLIArgumentType(nargs='?', const='.',

0 commit comments

Comments
 (0)