src/eric7/VCS/__init__.py

branch
eric7
changeset 10436
f6881d10e995
parent 9653
e67609152c5e
child 10439
21c28b0f9e41
--- a/src/eric7/VCS/__init__.py	Fri Dec 22 13:57:47 2023 +0100
+++ b/src/eric7/VCS/__init__.py	Fri Dec 22 17:24:07 2023 +0100
@@ -25,8 +25,10 @@
     """
     Modul factory function to generate the right vcs object.
 
-    @param vcs name of the VCS system to be used (string)
+    @param vcs name of the VCS system to be used
+    @type str
     @return the instantiated VCS object
+    @rtype VersionControl
     """
     pluginManager = ericApp().getObject("PluginManager")
     if pluginManager is None:
@@ -58,9 +60,10 @@
     """
     Module function to get a reference to the basic project helper singleton.
 
-    @param project reference to the project object (Project)
+    @param project reference to the project object
+    @type Project
     @return reference to the basic VCS project helper singleton
-        (VcsProjectHelper)
+    @rtype VcsProjectHelper
     """
     from .ProjectHelper import VcsProjectHelper
 

eric ide

mercurial