src/eric7/Preferences/ViewProfileDialog.py

branch
eric7
changeset 10428
a071d4065202
parent 9653
e67609152c5e
child 10439
21c28b0f9e41
--- a/src/eric7/Preferences/ViewProfileDialog.py	Wed Dec 20 11:06:38 2023 +0100
+++ b/src/eric7/Preferences/ViewProfileDialog.py	Wed Dec 20 14:58:58 2023 +0100
@@ -22,12 +22,16 @@
         """
         Constructor
 
-        @param layout type of the window layout (string)
+        @param layout type of the window layout
+        @type str
         @param editVisibilities list  of flags giving the visibilities
-            of the various parts for the 'edit' view profile (list of boolean)
+            of the various parts for the 'edit' view profile
+        @type list of bool
         @param debugVisibilities list  of flags giving the visibilities
-            of the various parts for the 'debug' view profile (list of boolean)
-        @param parent parent widget of this dialog (QWidget)
+            of the various parts for the 'debug' view profile
+        @type list of bool
+        @param parent parent widget of this dialog
+        @type QWidget
         @exception ValueError raised to indicate an invalid layout
         """
         super().__init__(parent)
@@ -61,7 +65,8 @@
         Public method to retrieve the visibilities configuration.
 
         @return tuple of two lists giving the visibilities of the
-            various parts (two lists of boolean)
+            various parts
+        @rtype list
         """
         if self.__layout in ["Toolboxes", "Sidebars"]:
             return (

eric ide

mercurial