Skip to content
Prev Previous commit
Next Next commit
minor fix on indentation
  • Loading branch information
ryanbelt committed Feb 23, 2016
commit c706d5cb990bea3f36bebf805e5c8dc33122356c
4 changes: 2 additions & 2 deletions lib/matplotlib/table.py
Original file line number Diff line number Diff line change
Expand Up @@ -416,8 +416,8 @@ def auto_set_column_width(self, col):
except (TypeError, AttributeError):
self._autoColumns.append(col)
else:
for cell in col:
self._autoColumns.append(cell)
for cell in col:
self._autoColumns.append(cell)
self.stale = True

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