1
0
mirror of synced 2026-02-06 19:05:55 +00:00

misc: simplify row append

Signed-off-by: Hidde Beydals <hidde@hhh.computer>
This commit is contained in:
Hidde Beydals
2023-10-13 10:12:36 +02:00
parent 43c2359705
commit 3278a0782f

View File

@@ -23,7 +23,7 @@ import (
"github.com/olekukonko/tablewriter"
)
// TablePrinter is a printer that prints Flux cmd outputs.
// TablePrinter is a printer that prints Flux cmd outputs.
func TablePrinter(header []string) PrinterFunc {
return func(w io.Writer, args ...interface{}) error {
var rows [][]string
@@ -35,9 +35,7 @@ func TablePrinter(header []string) PrinterFunc {
if !ok {
return fmt.Errorf("unsupported type %T", v)
}
for i := range s {
rows = append(rows, s[i])
}
rows = append(rows, s...)
}
default:
return fmt.Errorf("unsupported type %T", arg)