From 7e002ff9867cd85426dd57444797ae82280e551e Mon Sep 17 00:00:00 2001 From: Bill Maxwell Date: Fri, 13 Sep 2024 07:30:00 -0700 Subject: [PATCH] fix: variable declaration. Signed-off-by: Bill Maxwell --- pkg/cli/textio/spinner.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/cli/textio/spinner.go b/pkg/cli/textio/spinner.go index 89afd5db..cd16bf27 100644 --- a/pkg/cli/textio/spinner.go +++ b/pkg/cli/textio/spinner.go @@ -5,7 +5,7 @@ import ( "strings" ) -var chars []string{"⠋", "⠙", "⠹", "⠸", "⠼", "⠴", "⠦", "⠧", "⠇", "⠏"}, +var chars = []string{"⠋", "⠙", "⠹", "⠸", "⠼", "⠴", "⠦", "⠧", "⠇", "⠏"} type SpinnerPrinter struct { lastContent string