src/eric7/Plugins/VcsPlugins/vcsGit/GitBisectStartDialog.py

branch
eric7
changeset 10438
4cd7e5a8b3cf
parent 9653
e67609152c5e
child 10439
21c28b0f9e41
--- 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(),

eric ide

mercurial