src/eric7/Plugins/VcsPlugins/vcsPySvn/SvnSwitchDialog.py

branch
eric7
changeset 10438
4cd7e5a8b3cf
parent 9653
e67609152c5e
child 10439
21c28b0f9e41
--- a/src/eric7/Plugins/VcsPlugins/vcsPySvn/SvnSwitchDialog.py	Fri Dec 22 19:45:17 2023 +0100
+++ b/src/eric7/Plugins/VcsPlugins/vcsPySvn/SvnSwitchDialog.py	Sat Dec 23 15:40:23 2023 +0100
@@ -21,11 +21,14 @@
         """
         Constructor
 
-        @param taglist list of previously entered tags (list of strings)
-        @param reposURL repository path (string) or None
-        @param standardLayout flag indicating the layout of the
-            repository (boolean)
-        @param parent parent widget (QWidget)
+        @param taglist list of previously entered tags
+        @type list of str
+        @param reposURL repository path or None
+        @type str
+        @param standardLayout flag indicating the layout of the repository
+        @type bool
+        @param parent parent widget
+        @type QWidget
         """
         super().__init__(parent)
         self.setupUi(self)
@@ -46,7 +49,8 @@
         """
         Public method to retrieve the tag data.
 
-        @return tuple of string and int (tag, tag type)
+        @return tuple containing the tag and tag type
+        @rtype tuple of (str, int)
         """
         tag = self.tagCombo.currentText()
         tagType = 0

eric ide

mercurial