--- a/src/eric7/Project/AddFoundFilesDialog.py Wed Dec 20 15:42:44 2023 +0100 +++ b/src/eric7/Project/AddFoundFilesDialog.py Wed Dec 20 19:28:22 2023 +0100 @@ -27,9 +27,11 @@ Constructor @param files list of files, that have been found for addition - (list of strings) - @param parent parent widget of this dialog (QWidget) - @param name name of this dialog (string) + @type list of str + @param parent parent widget of this dialog + @type QWidget + @param name name of this dialog + @type str """ super().__init__(parent) if name: @@ -52,7 +54,8 @@ """ Private slot called by a button of the button box clicked. - @param button button that was clicked (QAbstractButton) + @param button button that was clicked + @type QAbstractButton """ if button == self.addAllButton: self.on_addAllButton_clicked() @@ -81,7 +84,8 @@ """ Public method to return the selected items. - @return list of selected files (list of strings) + @return list of selected files + @rtype list of str """ list_ = [] for itm in self.fileList.selectedItems():