diff -r 2f70ca07f0af -r 4cd7e5a8b3cf src/eric7/Plugins/VcsPlugins/vcsMercurial/RebaseExtension/rebase.py --- a/src/eric7/Plugins/VcsPlugins/vcsMercurial/RebaseExtension/rebase.py Fri Dec 22 19:45:17 2023 +0100 +++ b/src/eric7/Plugins/VcsPlugins/vcsMercurial/RebaseExtension/rebase.py Sat Dec 23 15:40:23 2023 +0100 @@ -23,6 +23,7 @@ Constructor @param vcs reference to the Mercurial vcs object + @type Hg """ super().__init__(vcs) @@ -30,7 +31,8 @@ """ Public method to rebase changesets to a different branch. - @return flag indicating that the project should be reread (boolean) + @return flag indicating that the project should be reread + @rtype bool """ from .HgRebaseDialog import HgRebaseDialog @@ -90,7 +92,8 @@ """ Public method to continue rebasing changesets from another branch. - @return flag indicating that the project should be reread (boolean) + @return flag indicating that the project should be reread + @rtype bool """ args = self.vcs.initCommand("rebase") args.append("--continue") @@ -108,7 +111,8 @@ """ Public method to abort rebasing changesets from another branch. - @return flag indicating that the project should be reread (boolean) + @return flag indicating that the project should be reread + @rtype bool """ args = self.vcs.initCommand("rebase") args.append("--abort")