Skip to content

Commit

Permalink
add pylint comment
Browse files Browse the repository at this point in the history
  • Loading branch information
slawande2 committed Oct 2, 2024
1 parent 1949a96 commit 8f8a510
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 @@ -285,7 +285,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 8f8a510

Please sign in to comment.