src/eric7/EricWidgets/EricPasswordMeter.py

branch
eric7
changeset 10423
299802979277
parent 9653
e67609152c5e
child 10439
21c28b0f9e41
--- a/src/eric7/EricWidgets/EricPasswordMeter.py	Tue Dec 19 11:04:03 2023 +0100
+++ b/src/eric7/EricWidgets/EricPasswordMeter.py	Tue Dec 19 19:57:08 2023 +0100
@@ -21,7 +21,8 @@
         """
         Constructor
 
-        @param parent reference to the parent widget (QWidget)
+        @param parent reference to the parent widget
+        @type QWidget
         """
         super().__init__(parent)
 
@@ -53,7 +54,8 @@
         Public slot to check the password strength and update the
         progress bar accordingly.
 
-        @param password password to be checked (string)
+        @param password password to be checked
+        @type str
         """
         strength = PasswordChecker().checkPassword(password)
         self.setStyleSheet(
@@ -67,7 +69,8 @@
 
         Overwritten to do nothing.
 
-        @param value value (integer)
+        @param value value
+        @type int
         """
         pass
 
@@ -77,7 +80,8 @@
 
         Overwritten to do nothing.
 
-        @param value maximum value (integer)
+        @param value maximum value
+        @type int
         """
         pass
 
@@ -87,7 +91,8 @@
 
         Overwritten to do nothing.
 
-        @param value minimum value (integer)
+        @param value minimum value
+        @type int
         """
         pass
 

eric ide

mercurial