diff -r f6881d10e995 -r 2f70ca07f0af src/eric7/Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardRepeatDialog.py --- a/src/eric7/Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardRepeatDialog.py Fri Dec 22 17:24:07 2023 +0100 +++ b/src/eric7/Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardRepeatDialog.py Fri Dec 22 19:45:17 2023 +0100 @@ -22,7 +22,8 @@ """ Constructor - @param parent parent widget (QWidget) + @param parent parent widget + @type QWidget """ super().__init__(parent) self.setupUi(self) @@ -37,7 +38,8 @@ """ Private slot to handle the lowerSpin valueChanged signal. - @param value value of the spinbox (integer) + @param value value of the spinbox + @type int """ if self.upperSpin.value() < value: self.upperSpin.setValue(value) @@ -47,7 +49,8 @@ """ Private slot to handle the upperSpin valueChanged signal. - @param value value of the spinbox (integer) + @param value value of the spinbox + @type int """ if self.lowerSpin.value() > value: self.lowerSpin.setValue(value) @@ -56,7 +59,8 @@ """ Public method to retrieve the dialog's result. - @return ready formatted repeat string (string) + @return ready formatted repeat string + @rtype str """ minimal = "?" if self.minimalCheckBox.isChecked() else ""