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

branch
eric7
changeset 10438
4cd7e5a8b3cf
parent 9653
e67609152c5e
child 10439
21c28b0f9e41
--- a/src/eric7/Plugins/VcsPlugins/vcsGit/GitCherryPickDialog.py	Fri Dec 22 19:45:17 2023 +0100
+++ b/src/eric7/Plugins/VcsPlugins/vcsGit/GitCherryPickDialog.py	Sat Dec 23 15:40:23 2023 +0100
@@ -22,9 +22,10 @@
         """
         Constructor
 
-        @param commits list of commits to show in the commits pane (list of
-            strings)
-        @param parent reference to the parent widget (QWidget)
+        @param commits list of commits to show in the commits pane
+        @type list of str
+        @param parent reference to the parent widget
+        @type QWidget
         """
         super().__init__(parent)
         self.setupUi(self)
@@ -50,7 +51,8 @@
         @return tuple with list of commits, a flag indicating to append
             cherry-pick info to the commit message, a flag indicating to append
             a signed-off-by line to the commit message and a flag indicating to
-            not commit the action (list of strings, boolean, boolean, boolean)
+            not commit the action
+        @rtype tuple of (list of str, bool, bool, bool)
         """
         return (
             self.commitsEdit.toPlainText().strip().splitlines(),

eric ide

mercurial