From 384f2a40139d5e6640341f40038b3489522a8d03 Mon Sep 17 00:00:00 2001 From: Robert Sirchia Date: Tue, 16 Sep 2025 15:32:38 -0400 Subject: [PATCH] correcting linting error Signed-off-by: Robert Sirchia --- pkg/cmd/completion.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/cmd/completion.go b/pkg/cmd/completion.go index 6a2ef1b45..976c4823e 100644 --- a/pkg/cmd/completion.go +++ b/pkg/cmd/completion.go @@ -199,7 +199,7 @@ compdef _helm %[1]s } // Cobra doesn't source zsh completion file, explicitly doing it here - _, err = fmt.Fprintf(out, "compdef _helm helm") + _, _ = fmt.Fprintf(out, "compdef _helm helm") return err }