diff -r f6881d10e995 -r 2f70ca07f0af src/eric7/Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardCharactersDialog.py --- a/src/eric7/Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardCharactersDialog.py Fri Dec 22 17:24:07 2023 +0100 +++ b/src/eric7/Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardCharactersDialog.py Fri Dec 22 19:45:17 2023 +0100 @@ -39,7 +39,8 @@ """ Constructor - @param parent parent widget (QWidget) + @param parent parent widget + @type QWidget """ super().__init__(parent) self.setupUi(self) @@ -212,8 +213,10 @@ """ Private method performing some actions depending on the input. - @param index selected list index (integer) - @param lineedit line edit widget to act on (QLineEdit) + @param index selected list index + @type int + @param lineedit line edit widget to act on + @type QLineEdit """ if index < 3: lineedit.setEnabled(True) @@ -262,9 +265,12 @@ """ Private method to format the characters entered into the dialog. - @param index selected list index (integer) - @param char character string enetered into the dialog (string) - @return formated character string (string) + @param index selected list index + @type int + @param char character string enetered into the dialog + @type str + @return formated character string + @rtype str """ if index == 0: return char @@ -282,7 +288,8 @@ """ Public method to return the character string assembled via the dialog. - @return formatted string for character classes (string) + @return formatted string for character classes + @rtype str """ regexp = ""