Skip to content

Commit 525c182

Browse files
committed
table.go: Fix new lint failure
1 parent db5cba9 commit 525c182

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

table.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,7 @@ func (t *tableChart) renderWithInfo(info *renderInfo) (Box, error) {
292292
heights := []int{info.headerHeight}
293293
heights = append(heights, info.rowHeights...)
294294
// loop through all table cells to generate background color
295-
for i, _ := range arr {
295+
for i := range arr {
296296
left := 0
297297
for j, tc := range info.tableCells[i] {
298298
if !tc.FillColor.IsZero() {

0 commit comments

Comments
 (0)