512 self.activated.connect(self.__gotoTestDefinition) |
512 self.activated.connect(self.__gotoTestDefinition) |
513 self.customContextMenuRequested.connect(self.__showContextMenu) |
513 self.customContextMenuRequested.connect(self.__showContextMenu) |
514 |
514 |
515 self.header().sortIndicatorChanged.connect(self.sortByColumn) |
515 self.header().sortIndicatorChanged.connect(self.sortByColumn) |
516 self.header().sortIndicatorChanged.connect( |
516 self.header().sortIndicatorChanged.connect( |
517 lambda col, order: self.header().setSortIndicatorShown(True) # noqa: U100 |
517 lambda _col, _order: self.header().setSortIndicatorShown(True) |
518 ) |
518 ) |
519 |
519 |
520 def reset(self): |
520 def reset(self): |
521 """ |
521 """ |
522 Public method to reset the internal state of the view. |
522 Public method to reset the internal state of the view. |