From 68cb6315309476910d847fc54dd087bbca48047e Mon Sep 17 00:00:00 2001 From: Adam Blasko Date: Tue, 15 Apr 2025 17:27:56 +0200 Subject: [PATCH] fix: fixing lint issue Signed-off-by: Adam Blasko --- pkg/state/state.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/state/state.go b/pkg/state/state.go index 4fbda1d1..ef93ce67 100644 --- a/pkg/state/state.go +++ b/pkg/state/state.go @@ -1803,7 +1803,7 @@ type diffPrepareResult struct { // commonDiffFlags returns common flags for helm diff, not in release-specific context func (st *HelmState) commonDiffFlags(detailedExitCode bool, stripTrailingCR bool, includeTests bool, suppress []string, suppressSecrets bool, showSecrets bool, noHooks bool, opt *DiffOpts) []string { - var flags []string = []string{} + var flags = []string{} if detailedExitCode { flags = append(flags, "--detailed-exitcode")