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

branch
eric7
changeset 10438
4cd7e5a8b3cf
parent 9653
e67609152c5e
child 10439
21c28b0f9e41
--- a/src/eric7/Plugins/VcsPlugins/vcsPySvn/SvnUrlSelectionDialog.py	Fri Dec 22 19:45:17 2023 +0100
+++ b/src/eric7/Plugins/VcsPlugins/vcsPySvn/SvnUrlSelectionDialog.py	Sat Dec 23 15:40:23 2023 +0100
@@ -31,10 +31,15 @@
         Constructor
 
         @param vcs reference to the vcs object
-        @param tagsList list of tags (list of strings)
-        @param branchesList list of branches (list of strings)
-        @param path pathname to determine the repository URL from (string)
-        @param parent parent widget of the dialog (QWidget)
+        @type Subversion
+        @param tagsList list of tags
+        @type list of str
+        @param branchesList list of branches
+        @type list of str
+        @param path pathname to determine the repository URL from
+        @type str
+        @param parent parent widget of the dialog
+        @type QWidget
         """
         super().__init__(parent)
         self.setupUi(self)
@@ -108,8 +113,10 @@
         Private method used to change the label combo depending on the
         selected type.
 
-        @param labelCombo reference to the labelCombo object (QComboBox)
-        @param type_ type string (string)
+        @param labelCombo reference to the labelCombo object
+        @type QComboBox
+        @param type_ type string
+        @type str
         """
         if type_ == "trunk/":
             labelCombo.clear()
@@ -152,8 +159,8 @@
         """
         Public method to get the entered URLs.
 
-        @return tuple of list of two URL strings (list of strings) and
-            a flag indicating a diff summary (boolean)
+        @return tuple of list of two URL strings and a flag indicating a diff summary
+        @rtype tuple of (list of [str, str], bool)
         """
         if self.vcs.otherData["standardLayout"]:
             url1 = (

eric ide

mercurial