refactor: simplfiy for...range loops
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2021-08-31 16:17:08 +01:00
parent 3b93f893fd
commit 32b2bf245b
2 changed files with 2 additions and 2 deletions

View File

@ -46,7 +46,7 @@ var appCheckCommand = &cli.Command{
}
var missing []string
for k, _ := range envSample {
for k := range envSample {
if _, ok := appEnv.Env[k]; !ok {
missing = append(missing, k)
}