From e47d7029d70b5510fe5858cacfc92cf1d3a6bb73 Mon Sep 17 00:00:00 2001 From: Roxie Gibson Date: Thu, 16 Sep 2021 12:01:47 +0100 Subject: [PATCH] refactor: S1005 gosimple --- cli/recipe/lint.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/recipe/lint.go b/cli/recipe/lint.go index 93ad59e4b..cc6e09c95 100644 --- a/cli/recipe/lint.go +++ b/cli/recipe/lint.go @@ -99,7 +99,7 @@ var recipeLintCommand = &cli.Command{ if c.NArg() > 0 { return } - for name, _ := range catl { + for name := range catl { fmt.Println(name) } },