src/eric7/Plugins/VcsPlugins/vcsSubversion/SvnStatusMonitorThread.py

branch
eric7
changeset 10438
4cd7e5a8b3cf
parent 10373
093dcebe5ecb
child 10439
21c28b0f9e41
--- a/src/eric7/Plugins/VcsPlugins/vcsSubversion/SvnStatusMonitorThread.py	Fri Dec 22 19:45:17 2023 +0100
+++ b/src/eric7/Plugins/VcsPlugins/vcsSubversion/SvnStatusMonitorThread.py	Sat Dec 23 15:40:23 2023 +0100
@@ -24,10 +24,14 @@
         """
         Constructor
 
-        @param interval new interval in seconds (integer)
-        @param project reference to the project object (Project)
+        @param interval new interval in seconds
+        @type int
+        @param project reference to the project object
+        @type Project
         @param vcs reference to the version control object
-        @param parent reference to the parent object (QObject)
+        @type Subversion
+        @param parent reference to the parent object
+        @type QObject
         """
         VcsStatusMonitorThread.__init__(self, interval, project, vcs, parent)
 
@@ -58,8 +62,9 @@
             <li>" " path is back at normal</li>
         </ul>
 
-        @return tuple of flag indicating successful operation (boolean) and
-            a status message in case of non successful operation (string)
+        @return tuple of flag indicating successful operation and a status message
+            in case of non successful operation
+        @rtype tuple of (bool, str)
         """
         self.shouldUpdate = False
 

eric ide

mercurial