src/eric7/Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/largefiles.py

branch
eric7
changeset 10438
4cd7e5a8b3cf
parent 9653
e67609152c5e
child 10439
21c28b0f9e41
diff -r 2f70ca07f0af -r 4cd7e5a8b3cf src/eric7/Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/largefiles.py
--- a/src/eric7/Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/largefiles.py	Fri Dec 22 19:45:17 2023 +0100
+++ b/src/eric7/Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/largefiles.py	Sat Dec 23 15:40:23 2023 +0100
@@ -30,6 +30,7 @@
         Constructor
 
         @param vcs reference to the Mercurial vcs object
+        @type Hg
         """
         super().__init__(vcs)
 
@@ -37,9 +38,10 @@
         """
         Public slot to convert the repository format of the current project.
 
-        @param direction direction of the conversion (string, one of
-            'largefiles' or 'normal')
-        @param projectFile file name of the current project file (string)
+        @param direction direction of the conversion (one of 'largefiles' or 'normal')
+        @type str
+        @param projectFile file name of the current project file
+        @type str
         @exception ValueError raised to indicate a bad value for the
             'direction' parameter.
         """
@@ -123,8 +125,10 @@
         """
         Public method used to add a file to the Mercurial repository.
 
-        @param names file name(s) to be added (string or list of string)
-        @param mode add mode (string one of 'normal' or 'large')
+        @param names file name(s) to be added
+        @type str or list of str
+        @param mode add mode (one of 'normal' or 'large')
+        @type str
         """
         args = self.vcs.initCommand("add")
         args.append("-v")
@@ -147,7 +151,8 @@
         """
         Public method to pull missing large files into the local repository.
 
-        @param revisions list of revisions to pull (list of string)
+        @param revisions list of revisions to pull
+        @type list of str
         """
         from .LfRevisionsInputDialog import LfRevisionsInputDialog
 
@@ -175,7 +180,8 @@
         """
         Public method to verify large files integrity.
 
-        @param mode verify mode (string; one of 'large', 'lfa' or 'lfc')
+        @param mode verify mode (one of 'large', 'lfa' or 'lfc')
+        @type str
         """
         args = self.vcs.initCommand("verify")
         if mode == "large":

eric ide

mercurial