From 8f8a5101621df2007ab3789b7f2f6a8047610f7e Mon Sep 17 00:00:00 2001 From: Sanjana Lawande Date: Mon, 30 Sep 2024 09:39:40 -0700 Subject: [PATCH] add pylint comment --- python/az/aro/azext_aro/_validators.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/az/aro/azext_aro/_validators.py b/python/az/aro/azext_aro/_validators.py index 0d789226e0a..a05e3346ee0 100644 --- a/python/az/aro/azext_aro/_validators.py +++ b/python/az/aro/azext_aro/_validators.py @@ -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):