--- a/src/eric7/Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardRepeatDialog.py Fri Dec 22 17:24:07 2023 +0100 +++ b/src/eric7/Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardRepeatDialog.py Fri Dec 22 19:45:17 2023 +0100 @@ -26,7 +26,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) @@ -42,7 +43,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) @@ -52,7 +54,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) @@ -61,7 +64,8 @@ """ Public method to retrieve the dialog's result. - @return ready formatted repeat string (string) + @return ready formatted repeat string + @rtype str """ if self.possessiveButton.isChecked(): greedy = "+"