Address staticcheck warnings

This commit is contained in:
2025-06-14 09:48:15 -04:00
parent a427b4a907
commit f5367779eb
3 changed files with 3 additions and 18 deletions
+1 -1
View File
@@ -197,7 +197,7 @@ func parseRules(input []interface{}, curRegion *region) (*rules, error) {
}
rules.regions = append(rules.regions, region)
default:
return nil, fmt.Errorf("Bad type %T", object)
return nil, fmt.Errorf("bad type %T", object)
}
}
}