diff -r 2f70ca07f0af -r 4cd7e5a8b3cf src/eric7/Plugins/VcsPlugins/vcsMercurial/HgExtensionProjectHelper.py --- a/src/eric7/Plugins/VcsPlugins/vcsMercurial/HgExtensionProjectHelper.py Fri Dec 22 19:45:17 2023 +0100 +++ b/src/eric7/Plugins/VcsPlugins/vcsMercurial/HgExtensionProjectHelper.py Sat Dec 23 15:40:23 2023 +0100 @@ -35,7 +35,9 @@ Public method to set references to the vcs and project objects. @param vcsObject reference to the vcs object + @type Hg @param projectObject reference to the project object + @type Project """ self.vcs = vcsObject self.project = projectObject @@ -44,7 +46,8 @@ """ Public method to get a list of all actions. - @return list of all actions (list of EricAction) + @return list of all actions + @rtype list of EricAction """ return self.actions[:] @@ -65,8 +68,10 @@ Note: Derived class must implement this method. - @param mainMenu reference to the main menu (QMenu) - @return populated menu (QMenu) + @param mainMenu reference to the main menu + @type QMenu + @return populated menu + @rtype QMenu @exception NotImplementedError raised if the class has not been reimplemented """ @@ -80,7 +85,8 @@ Note: Derived class must implement this method. - @return title of the menu (string) + @return title of the menu + @rtype str @exception NotImplementedError raised if the class has not been reimplemented """