Skip to content

Commit e770c8d

Browse files
committed
Removed leftovers debugs
1 parent 528f72a commit e770c8d

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

Diff for: output/table.go

-4
Original file line numberDiff line numberDiff line change
@@ -110,9 +110,6 @@ func (t *Table) Render() string {
110110
for x := range average {
111111
average[x] = average[x] / count[x]
112112
}
113-
// fmt.Println("COUNT:", count)
114-
// fmt.Println("MAX :", widths)
115-
// fmt.Println("AVG :", average)
116113
variance := make([]int, t.columnsCount)
117114
for _, row := range t.rows {
118115
for x, cell := range row.cells {
@@ -127,7 +124,6 @@ func (t *Table) Render() string {
127124
for x := range variance {
128125
variance[x] = int(math.Sqrt(float64(variance[x] / count[x])))
129126
}
130-
// fmt.Println("VAR :", variance)
131127

132128
res := ""
133129
for _, row := range t.rows {

0 commit comments

Comments
 (0)