misc: simplify row append
Signed-off-by: Hidde Beydals <hidde@hhh.computer>
This commit is contained in:
@@ -23,7 +23,7 @@ import (
|
|||||||
"github.com/olekukonko/tablewriter"
|
"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 {
|
func TablePrinter(header []string) PrinterFunc {
|
||||||
return func(w io.Writer, args ...interface{}) error {
|
return func(w io.Writer, args ...interface{}) error {
|
||||||
var rows [][]string
|
var rows [][]string
|
||||||
@@ -35,9 +35,7 @@ func TablePrinter(header []string) PrinterFunc {
|
|||||||
if !ok {
|
if !ok {
|
||||||
return fmt.Errorf("unsupported type %T", v)
|
return fmt.Errorf("unsupported type %T", v)
|
||||||
}
|
}
|
||||||
for i := range s {
|
rows = append(rows, s...)
|
||||||
rows = append(rows, s[i])
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
default:
|
default:
|
||||||
return fmt.Errorf("unsupported type %T", arg)
|
return fmt.Errorf("unsupported type %T", arg)
|
||||||
|
|||||||
Reference in New Issue
Block a user