From 1e6b8b76c2e0163249c771783f7d4b01626c7140 Mon Sep 17 00:00:00 2001 From: Yuriy Novostavskiy Date: Thu, 12 Dec 2024 11:42:10 +0000 Subject: [PATCH] fix linters --- plugins/modules/helm_registry_auth.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/plugins/modules/helm_registry_auth.py b/plugins/modules/helm_registry_auth.py index 2964126d2b..dc599e1b36 100644 --- a/plugins/modules/helm_registry_auth.py +++ b/plugins/modules/helm_registry_auth.py @@ -215,7 +215,9 @@ def main(): if module.check_mode: module.exit_json(changed=changed, command=helm_cmd) - rc, out, err = module.run_helm_command(helm_cmd, data=password, fails_on_error=False) + rc, out, err = module.run_helm_command( + helm_cmd, data=password, fails_on_error=False + ) if rc != 0: if state == "absent" and "Error: not logged in" in err: