multi: fix linter issues

This commit is contained in:
Oliver Gugger 2023-09-28 13:24:28 +02:00
parent b3c0d0e9b1
commit 322a96133d
No known key found for this signature in database
GPG key ID: 8E4256593F177720
5 changed files with 5 additions and 5 deletions

View file

@ -119,7 +119,7 @@ func printJSON(resp interface{}) {
}
var out bytes.Buffer
json.Indent(&out, b, "", "\t")
out.WriteString("\n")
out.WriteTo(os.Stdout)
_ = json.Indent(&out, b, "", "\t")
_, _ = out.WriteString("\n")
_, _ = out.WriteTo(os.Stdout)
}