sshhhh please linter, mommy's working

This commit is contained in:
kim 2025-04-09 15:51:55 +01:00
commit 663acae0c5

View file

@ -43,8 +43,8 @@ func (p *IPPrefixes) String() string {
var buf byteutil.Buffer
for _, prefix := range *p {
str := prefix.String()
buf.WriteString(str)
buf.WriteByte(',')
buf.B = append(buf.B, str...)
buf.B = append(buf.B, ',')
}
buf.Truncate(1)
return buf.String()