493 self.rootNode.populated = False |
493 self.rootNode.populated = False |
494 idxStart = self.index(0, 0, QModelIndex()) |
494 idxStart = self.index(0, 0, QModelIndex()) |
495 idxEnd = self.index(0, 2, QModelIndex()) |
495 idxEnd = self.index(0, 2, QModelIndex()) |
496 self.dataChanged.emit(idxStart, idxEnd) |
496 self.dataChanged.emit(idxStart, idxEnd) |
497 |
497 |
498 def columnCount(self, parent=None): # noqa: U100 |
498 def columnCount(self, parent=None): # noqa: U-100 |
499 """ |
499 """ |
500 Public method to get the column count. |
500 Public method to get the column count. |
501 |
501 |
502 @param parent the model parent (defaults to None) (unused) |
502 @param parent the model parent (defaults to None) (unused) |
503 @type QModelIndex (optional) |
503 @type QModelIndex (optional) |