--- 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