Apply go fix -stringsseq ./...

This commit is contained in:
Michael Eischer
2026-07-22 22:27:07 +02:00
parent 31e96f4ec9
commit 58f92708c2
10 changed files with 11 additions and 11 deletions
+1 -1
View File
@@ -61,7 +61,7 @@ func parseFilter(envname string, pad func(string) string) map[string]bool {
return filter
}
for _, fn := range strings.Split(env, ",") {
for fn := range strings.SplitSeq(env, ",") {
t := pad(strings.TrimSpace(fn))
val := true
switch t[0] {