Skip to content

Commit

Permalink
fix htmltag lint (#8345)
Browse files Browse the repository at this point in the history
  • Loading branch information
cxznmhdcxz authored Dec 10, 2024
1 parent ec1e3fd commit aa86309
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/redisenterprise/azext_redisenterprise/_params.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ def load_arguments(self, _):
arg_group='KeyEncryptionKeyIdentity')
c.argument('user_assigned_identity_resource_id', options_list=['--user-assigned-identity-resource-id', '--identity-resource-id'],
type=str, help='User assigned identity to use for accessing key encryption key Url. '
'Ex: /subscriptions/<sub uuid>/resourceGroups/<resource group>/providers/Microsoft.ManagedIdentity/userAssignedIdentities/myId.',
'Ex: `/subscriptions/<sub uuid>/resourceGroups/<resource group>/providers/Microsoft.ManagedIdentity/userAssignedIdentities/myId`.',
arg_group='KeyEncryptionKeyIdentity')
c.argument('user_assigned_identities', options_list=['--user-assigned-identities', '--assigned-identities'],
type=validate_file_or_dict, help='The set of user assigned identities associated with the resource. '
Expand Down Expand Up @@ -124,7 +124,7 @@ def load_arguments(self, _):
arg_group='KeyEncryptionKeyIdentity')
c.argument('user_assigned_identity_resource_id', options_list=['--user-assigned-identity-resource-id', '--identity-resource-id'], type=str,
help='User assigned identity to use for accessing key encryption key Url. '
'Ex: /subscriptions/<sub uuid>/resourceGroups/<resource group>/providers/Microsoft.ManagedIdentity/userAssignedIdentities/myId.',
'Ex: `/subscriptions/<sub uuid>/resourceGroups/<resource group>/providers/Microsoft.ManagedIdentity/userAssignedIdentities/myId`.',
arg_group='KeyEncryptionKeyIdentity')
c.argument('user_assigned_identities', options_list=['--user-assigned-identities', '--assigned-identities'],
type=validate_file_or_dict, help='The set of user assigned identities associated with the resource. '
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ def _build_arguments_schema(cls, *args, **kwargs):
_args_schema.user_assigned_identity_resource_id = AAZStrArg(
options=["--identity-resource-id", "--user-assigned-identity-resource-id"],
arg_group="KeyEncryptionKeyIdentity",
help="User assigned identity to use for accessing key encryption key Url. Ex: /subscriptions/<sub uuid>/resourceGroups/<resource group>/providers/Microsoft.ManagedIdentity/userAssignedIdentities/myId.",
help="User assigned identity to use for accessing key encryption key Url. Ex: `/subscriptions/<sub uuid>/resourceGroups/<resource group>/providers/Microsoft.ManagedIdentity/userAssignedIdentities/myId`.",
)

# define Arg Group "Parameters"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ def _build_arguments_schema(cls, *args, **kwargs):
_args_schema.user_assigned_identity_resource_id = AAZStrArg(
options=["--identity-resource-id", "--user-assigned-identity-resource-id"],
arg_group="KeyEncryptionKeyIdentity",
help="User assigned identity to use for accessing key encryption key Url. Ex: /subscriptions/<sub uuid>/resourceGroups/<resource group>/providers/Microsoft.ManagedIdentity/userAssignedIdentities/myId.",
help="User assigned identity to use for accessing key encryption key Url. Ex: `/subscriptions/<sub uuid>/resourceGroups/<resource group>/providers/Microsoft.ManagedIdentity/userAssignedIdentities/myId`.",
nullable=True,
)

Expand Down

0 comments on commit aa86309

Please sign in to comment.