Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
lmolas committed Oct 22, 2020
1 parent d6a7f29 commit 71c2901
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/parse/parse.go
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ func NewCertificateData(ns, secretName string, data map[string]interface{}, secr
certData.SecretKeys = make([]string, len(certsMap))
i := 0

for key, _ := range certsMap {
for key := range certsMap {
certData.SecretKeys[i] = key
i++
}
Expand Down

0 comments on commit 71c2901

Please sign in to comment.