-
Notifications
You must be signed in to change notification settings - Fork 108
Open
Description
In TableModels.py:
def deleteColumns(self, cols=None):
"""Remove all cols or list provided"""
if cols == None:
cols = self.columnNames
if self.getColumnCount() == 0:
return
for col in cols:
self.deleteColumn(col)
returnRighly so TableCanvas.model.deleteColumns(), cause this exception:
TypeError: list indices must be integers or slices, not strAlso I get warnings like these, when I initialise TableCanvas
Did not find preferences!!!
could not save
could not save
I believe you should use the Python logging module, so its easier for others to find the source of these messages.
Metadata
Metadata
Assignees
Labels
No labels