--- a/src/eric7/Plugins/VcsPlugins/vcsGit/GitArchiveDataDialog.py Fri Dec 22 19:45:17 2023 +0100 +++ b/src/eric7/Plugins/VcsPlugins/vcsGit/GitArchiveDataDialog.py Sat Dec 23 15:40:23 2023 +0100 @@ -29,10 +29,14 @@ """ Constructor - @param tagsList list of tags (list of strings) - @param branchesList list of branches (list of strings) - @param formatsList list of archive formats (list of strings) - @param parent reference to the parent widget (QWidget) + @param tagsList list of tags + @type list of str + @param branchesList list of branches + @type list of str + @param formatsList list of archive formats + @type list of str + @param parent reference to the parent widget + @type QWidget """ super().__init__(parent) self.setupUi(self) @@ -70,7 +74,8 @@ """ Private slot to handle changes of the file edit. - @param txt text of the edit (string) + @param txt text of the edit + @type str """ self.__updateOK() @@ -98,7 +103,8 @@ """ Private slot to handle changes of the rev select button. - @param checked state of the button (boolean) + @param checked state of the button + @type bool """ self.__updateOK() @@ -107,7 +113,8 @@ """ Private slot to handle changes of the rev edit. - @param txt text of the edit (string) + @param txt text of the edit + @type str """ self.__updateOK() @@ -116,7 +123,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() @@ -125,7 +133,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() @@ -134,7 +143,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() @@ -143,7 +153,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() @@ -151,8 +162,8 @@ """ Public method to retrieve the entered data. - @return tuple of selected revision (string), archive format (string), - archive file (string) and prefix (string) + @return tuple of selected revision, archive format, archive file and prefix + @rtype tuple of (str, str, str, str) """ if self.revButton.isChecked(): rev = self.revEdit.text()