diff -r 2f70ca07f0af -r 4cd7e5a8b3cf src/eric7/Plugins/VcsPlugins/vcsGit/GitRevisionsSelectionDialog.py --- a/src/eric7/Plugins/VcsPlugins/vcsGit/GitRevisionsSelectionDialog.py Fri Dec 22 19:45:17 2023 +0100 +++ b/src/eric7/Plugins/VcsPlugins/vcsGit/GitRevisionsSelectionDialog.py Sat Dec 23 15:40:23 2023 +0100 @@ -23,9 +23,12 @@ """ Constructor - @param tagsList list of tags (list of strings) - @param branchesList list of branches (list of strings) - @param parent parent widget of the dialog (QWidget) + @param tagsList list of tags + @type list of str + @param branchesList list of branches + @type list of str + @param parent parent widget of the dialog + @type QWidget """ super().__init__(parent) self.setupUi(self) @@ -66,7 +69,8 @@ """ Private slot to handle changes of the rev1 select button. - @param checked state of the button (boolean) + @param checked state of the button + @type bool """ self.__updateOK() @@ -75,7 +79,8 @@ """ Private slot to handle changes of the rev2 select button. - @param checked state of the button (boolean) + @param checked state of the button + @type bool """ self.__updateOK() @@ -84,7 +89,8 @@ """ Private slot to handle changes of the Tag1 select button. - @param checked state of the button (boolean) + @param checked state of the button + @type bool """ self.__updateOK() @@ -93,7 +99,8 @@ """ Private slot to handle changes of the Tag2 select button. - @param checked state of the button (boolean) + @param checked state of the button + @type bool """ self.__updateOK() @@ -102,7 +109,8 @@ """ Private slot to handle changes of the Branch1 select button. - @param checked state of the button (boolean) + @param checked state of the button + @type bool """ self.__updateOK() @@ -111,7 +119,8 @@ """ Private slot to handle changes of the Branch2 select button. - @param checked state of the button (boolean) + @param checked state of the button + @type bool """ self.__updateOK() @@ -120,7 +129,8 @@ """ Private slot to handle changes of the rev1 edit. - @param txt text of the edit (string) + @param txt text of the edit + @type str """ self.__updateOK() @@ -129,7 +139,8 @@ """ Private slot to handle changes of the rev2 edit. - @param txt text of the edit (string) + @param txt text of the edit + @type str """ self.__updateOK() @@ -138,7 +149,8 @@ """ Private slot to handle changes of the Tag1 combo. - @param txt text of the combo (string) + @param txt text of the combo + @type str """ self.__updateOK() @@ -147,7 +159,8 @@ """ Private slot to handle changes of the Tag2 combo. - @param txt text of the combo (string) + @param txt text of the combo + @type str """ self.__updateOK() @@ -156,7 +169,8 @@ """ Private slot to handle changes of the Branch1 combo. - @param txt text of the combo (string) + @param txt text of the combo + @type str """ self.__updateOK() @@ -165,7 +179,8 @@ """ Private slot to handle changes of the Branch2 combo. - @param txt text of the combo (string) + @param txt text of the combo + @type str """ self.__updateOK() @@ -174,7 +189,9 @@ Private method to generate the revision. @param no revision number to generate (1 or 2) - @return revision (string) + @type int + @return revision + @rtype str """ if no == 1: revButton = self.rev1Button @@ -216,7 +233,8 @@ """ Public method to get the revisions. - @return list of two revisions (list of strings) + @return list of two revisions + @rtype list of str """ rev1 = self.__getRevision(1) rev2 = self.__getRevision(2)