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

branch
eric7
changeset 10438
4cd7e5a8b3cf
parent 9653
e67609152c5e
child 10439
21c28b0f9e41
diff -r 2f70ca07f0af -r 4cd7e5a8b3cf src/eric7/Plugins/VcsPlugins/vcsSubversion/SvnRelocateDialog.py
--- a/src/eric7/Plugins/VcsPlugins/vcsSubversion/SvnRelocateDialog.py	Fri Dec 22 19:45:17 2023 +0100
+++ b/src/eric7/Plugins/VcsPlugins/vcsSubversion/SvnRelocateDialog.py	Sat Dec 23 15:40:23 2023 +0100
@@ -21,8 +21,10 @@
         """
         Constructor
 
-        @param currUrl current repository URL (string)
-        @param parent parent widget (QWidget)
+        @param currUrl current repository URL
+        @type str
+        @param parent parent widget
+        @type QWidget
         """
         super().__init__(parent)
         self.setupUi(self)
@@ -37,7 +39,8 @@
         """
         Public slot used to retrieve the data entered into the dialog.
 
-        @return the new repository URL (string) and an indication, if
-            the relocate is inside the repository (boolean)
+        @return the new repository URL and an indication, if the relocate is inside
+            the repository
+        @rtype tuple of (str, bool)
         """
         return self.newUrlEdit.text(), self.insideCheckBox.isChecked()

eric ide

mercurial