--- a/src/eric7/Plugins/VcsPlugins/vcsGit/GitBundleDialog.py Fri Dec 22 19:45:17 2023 +0100 +++ b/src/eric7/Plugins/VcsPlugins/vcsGit/GitBundleDialog.py Sat Dec 23 15:40:23 2023 +0100 @@ -22,9 +22,12 @@ """ Constructor - @param tagsList list of tags (list of strings) - @param branchesList list of branches (list of strings) - @param parent parent widget (QWidget) + @param tagsList list of tags + @type list of str + @param branchesList list of branches + @type list of str + @param parent parent widget + @type QWidget """ super().__init__(parent) self.setupUi(self) @@ -53,7 +56,8 @@ """ Private slot to handle changes of the revisions select button. - @param checked state of the button (boolean) + @param checked state of the button + @type bool """ self.__updateOK() @@ -62,7 +66,8 @@ """ Private slot to handle changes of the Tag select button. - @param checked state of the button (boolean) + @param checked state of the button + @type bool """ self.__updateOK() @@ -71,7 +76,8 @@ """ Private slot to handle changes of the Branch select button. - @param checked state of the button (boolean) + @param checked state of the button + @type bool """ self.__updateOK() @@ -80,7 +86,8 @@ """ Private slot to handle changes of the Revisions edit. - @param txt text of the line edit (string) + @param txt text of the line edit + @type str """ self.__updateOK() @@ -89,7 +96,8 @@ """ Private slot to handle changes of the Tag combo. - @param txt text of the combo (string) + @param txt text of the combo + @type str """ self.__updateOK() @@ -98,7 +106,8 @@ """ Private slot to handle changes of the Branch combo. - @param txt text of the combo (string) + @param txt text of the combo + @type str """ self.__updateOK() @@ -106,7 +115,8 @@ """ Public method to retrieve the bundle data. - @return list of revision expressions (list of strings) + @return list of revision expressions + @rtype list of str """ if self.revisionsButton.isChecked(): revs = self.revisionsEdit.text().strip().split()