--- 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(),