src/eric7/CondaInterface/CondaPackagesWidget.py

branch
eric7
changeset 10689
3ede487187f2
parent 10439
21c28b0f9e41
child 11006
a671918232f3
equal deleted inserted replaced
10688:0d9853ceb288 10689:3ede487187f2
510 """ 510 """
511 for col in range(1, self.searchResultList.columnCount()): 511 for col in range(1, self.searchResultList.columnCount()):
512 self.searchResultList.resizeColumnToContents(col) 512 self.searchResultList.resizeColumnToContents(col)
513 513
514 @pyqtSlot(QTreeWidgetItem, int) 514 @pyqtSlot(QTreeWidgetItem, int)
515 def on_searchResultList_itemDoubleClicked(self, item, column): 515 def on_searchResultList_itemDoubleClicked(self, item, _column):
516 """ 516 """
517 Private slot handling a double click of an item. 517 Private slot handling a double click of an item.
518 518
519 @param item reference to the item that was double clicked 519 @param item reference to the item that was double clicked
520 @type QTreeWidgetItem 520 @type QTreeWidgetItem
521 @param column column of the double click 521 @param _column column of the double click (unused)
522 @type int 522 @type int
523 """ 523 """
524 if item.parent() is not None: 524 if item.parent() is not None:
525 self.__showDetails(item) 525 self.__showDetails(item)
526 526

eric ide

mercurial