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

branch
eric7
changeset 10438
4cd7e5a8b3cf
parent 9653
e67609152c5e
child 10439
21c28b0f9e41
--- a/src/eric7/Plugins/VcsPlugins/vcsPySvn/SvnPropSetDialog.py	Fri Dec 22 19:45:17 2023 +0100
+++ b/src/eric7/Plugins/VcsPlugins/vcsPySvn/SvnPropSetDialog.py	Sat Dec 23 15:40:23 2023 +0100
@@ -22,7 +22,9 @@
         Constructor
 
         @param recursive flag indicating a recursive set is requested
-        @param parent parent widget (QWidget)
+        @type bool
+        @param parent parent widget
+        @type QWidget
         """
         super().__init__(parent)
         self.setupUi(self)
@@ -33,9 +35,9 @@
         """
         Public slot used to retrieve the data entered into the dialog.
 
-        @return tuple of three values giving the property name, the text
-            of the property and a flag indicating, that this property
-            should be applied recursively. (string, string, boolean)
+        @return tuple containing the property name, the text of the property and
+            a flag indicating, that this property should be applied recursively.
+        @rtype tuple of (str, str, bool)
         """
         return (
             self.propNameEdit.text(),

eric ide

mercurial