src/eric7/SqlBrowser/SqlConnectionDialog.py

branch
eric7
changeset 10431
64157aeb0312
parent 9653
e67609152c5e
child 10439
21c28b0f9e41
diff -r e440aaf179ce -r 64157aeb0312 src/eric7/SqlBrowser/SqlConnectionDialog.py
--- a/src/eric7/SqlBrowser/SqlConnectionDialog.py	Wed Dec 20 19:28:22 2023 +0100
+++ b/src/eric7/SqlBrowser/SqlConnectionDialog.py	Thu Dec 21 12:03:40 2023 +0100
@@ -25,7 +25,8 @@
         """
         Constructor
 
-        @param parent reference to the parent widget (QWidget)
+        @param parent reference to the parent widget
+        @type QWidget
         """
         super().__init__(parent)
         self.setupUi(self)
@@ -85,7 +86,8 @@
         """
         Private slot handling the change of the database name.
 
-        @param txt text of the edit (string)
+        @param txt text of the edit
+        @type str
         """
         self.__updateDialog()
 
@@ -93,9 +95,9 @@
         """
         Public method to retrieve the connection data.
 
-        @return tuple giving the driver name (string), the database name
-            (string), the user name (string), the password (string), the
-            host name (string) and the port (integer)
+        @return tuple giving the driver name, the database name, the user name,
+            the password, the host name and the port
+        @rtype tuple of (str, str, str, str, str, int)
         """
         return (
             self.driverCombo.currentText(),

eric ide

mercurial