Skip to content
Prev Previous commit
Next Next commit
fix indention to 4 space, but not tap
  • Loading branch information
mercurynomercy committed Feb 23, 2016
commit 1b3f49ca50311e142f40d53337aa039cd96d3445
3 changes: 2 additions & 1 deletion lib/matplotlib/table.py
Original file line number Diff line number Diff line change
Expand Up @@ -416,8 +416,9 @@ def auto_set_column_width(self, col):
except (TypeError, AttributeError):
self._autoColumns.append(col)
else:
for cell in col:
for cell in col:
self._autoColumns.append(cell)

self.stale = True

def _auto_set_column_width(self, col, renderer):
Expand Down