src/eric7/Plugins/VcsPlugins/vcsMercurial/HgAddSubrepositoryDialog.py

branch
eric7
changeset 10438
4cd7e5a8b3cf
parent 9653
e67609152c5e
child 10439
21c28b0f9e41
--- a/src/eric7/Plugins/VcsPlugins/vcsMercurial/HgAddSubrepositoryDialog.py	Fri Dec 22 19:45:17 2023 +0100
+++ b/src/eric7/Plugins/VcsPlugins/vcsMercurial/HgAddSubrepositoryDialog.py	Sat Dec 23 15:40:23 2023 +0100
@@ -28,8 +28,10 @@
         """
         Constructor
 
-        @param projectPath project directory name (string)
-        @param parent reference to the parent widget (QWidget)
+        @param projectPath project directory name
+        @type str
+        @param parent reference to the parent widget
+        @type QWidget
         """
         super().__init__(parent)
         self.setupUi(self)
@@ -63,7 +65,8 @@
         """
         Private slot to handle the update of the path.
 
-        @param p0 text of the path edit (string)
+        @param p0 text of the path edit
+        @type str
         """
         self.__updateOk()
 
@@ -72,7 +75,8 @@
         """
         Private slot to handle the update of the URL.
 
-        @param p0 text of the URL edit (string)
+        @param p0 text of the URL edit
+        @type str
         """
         self.__updateOk()
 
@@ -100,8 +104,8 @@
         Public method to get the data.
 
         @return tuple containing the relative path within the project, the
-            sub-repository type and the sub-repository URL (string, string,
-            string)
+            sub-repository type and the sub-repository URL
+        @rtype tuple of (str, str, str)
         """
         return (
             self.pathPicker.text(),

eric ide

mercurial