diff --git a/pkg/table/table.go b/pkg/table/table.go index 341bfa0..49821de 100644 --- a/pkg/table/table.go +++ b/pkg/table/table.go @@ -147,7 +147,7 @@ func (t *Table) Format() *Table { } if c.formatFn != nil { - r.strValues[j] = fmt.Sprintf("%s", c.formatFn(v)) + r.strValues[j] = c.formatFn(v) } else if c.format != "" { r.strValues[j] = fmt.Sprintf(c.format, v) } else {