--- a/src/eric7/Plugins/VcsPlugins/vcsGit/GitBisectStartDialog.py Fri Dec 22 19:45:17 2023 +0100 +++ b/src/eric7/Plugins/VcsPlugins/vcsGit/GitBisectStartDialog.py Sat Dec 23 15:40:23 2023 +0100 @@ -22,7 +22,8 @@ """ Constructor - @param parent reference to the parent widget (QWidget) + @param parent reference to the parent widget + @type QWidget """ super().__init__(parent) self.setupUi(self) @@ -45,7 +46,8 @@ """ Private slot to handle a change of the bad commit. - @param txt bad commit entered (string) + @param txt bad commit entered + @type str """ self.__updateOK() @@ -53,9 +55,9 @@ """ Public method to get the entered data. - @return tuple containing a bad commit (string), a list of good - commits (list of strings) and a flag indicating to not - checkout the working tree (boolean) + @return tuple containing a bad commit, a list of good commits and + a flag indicating to not checkout the working tree + @rtype tuple of (str, list of str, bool) """ return ( self.badEdit.text().strip(),