src/eric7/Plugins/VcsPlugins/vcsMercurial/RebaseExtension/rebase.py

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

eric ide

mercurial