misc: simplify row append
Signed-off-by: Hidde Beydals <hidde@hhh.computer>
This commit is contained in:
@@ -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