src/eric7/Project/NewPythonPackageDialog.py

branch
eric7
changeset 10430
e440aaf179ce
parent 9653
e67609152c5e
child 10439
21c28b0f9e41
diff -r 643989a1e2bd -r e440aaf179ce src/eric7/Project/NewPythonPackageDialog.py
--- a/src/eric7/Project/NewPythonPackageDialog.py	Wed Dec 20 15:42:44 2023 +0100
+++ b/src/eric7/Project/NewPythonPackageDialog.py	Wed Dec 20 19:28:22 2023 +0100
@@ -23,8 +23,9 @@
         Constructor
 
         @param relPath initial package path relative to the project root
-            (string)
-        @param parent reference to the parent widget (QWidget)
+        @type str
+        @param parent reference to the parent widget
+        @type QWidget
         """
         super().__init__(parent)
         self.setupUi(self)
@@ -43,7 +44,8 @@
         """
         Private slot called, when the package name is changed.
 
-        @param txt new text of the package name edit (string)
+        @param txt new text of the package name edit
+        @type str
         """
         self.okButton.setEnabled(txt != "")
 
@@ -51,6 +53,7 @@
         """
         Public method to retrieve the data entered into the dialog.
 
-        @return package name (string)
+        @return package name
+        @rtype str
         """
         return self.packageEdit.text()

eric ide

mercurial