refactor: S1005 gosimple
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Roxie Gibson 2021-09-16 12:01:47 +01:00
parent 31edbbd32e
commit e47d7029d7
Signed by untrusted user: roxxers
GPG Key ID: 5D0140EDEE123F4D
1 changed files with 1 additions and 1 deletions

View File

@ -99,7 +99,7 @@ var recipeLintCommand = &cli.Command{
if c.NArg() > 0 {
return
}
for name, _ := range catl {
for name := range catl {
fmt.Println(name)
}
},