Skip to content

Commit

Permalink
add pylint comment
Browse files Browse the repository at this point in the history
  • Loading branch information
slawande2 committed Sep 30, 2024
1 parent 79e3a07 commit c63083e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/az/aro/azext_aro/_validators.py
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ def validate_refresh_cluster_credentials(namespace):
if namespace.client_secret is not None or namespace.client_id is not None:
raise RequiredArgumentMissingError('--client-id and --client-secret must be not set with --refresh-credentials.') # pylint: disable=line-too-long
if namespace.platform_workload_identities is not None:
raise MutuallyExclusiveArgumentError('--platform-workload-identities must be not set with --refresh-credentials.')
raise MutuallyExclusiveArgumentError('--platform-workload-identities must be not set with --refresh-credentials.') # pylint: disable=line-too-long


def validate_version_format(namespace):
Expand Down

0 comments on commit c63083e

Please sign in to comment.