lint fixes

This commit is contained in:
2026-02-15 10:43:49 +00:00
parent 4f42aa7f36
commit 2a9b88b7f8
14 changed files with 220 additions and 67 deletions

View File

@@ -91,7 +91,12 @@ func (cmd *StreamStatusCmd) Run(ctx *context) error {
minutes := int(seconds / 60)
secondsInt := int(seconds) % 60
if minutes > 0 {
fmt.Fprintf(ctx.Out, "Output duration: %d minutes and %d seconds\n", minutes, secondsInt)
fmt.Fprintf(
ctx.Out,
"Output duration: %d minutes and %d seconds\n",
minutes,
secondsInt,
)
} else {
fmt.Fprintf(ctx.Out, "Output duration: %d seconds\n", secondsInt)
}