--- a/src/eric7/Templates/TemplateSingleVariableDialog.py Wed Dec 20 19:28:22 2023 +0100 +++ b/src/eric7/Templates/TemplateSingleVariableDialog.py Thu Dec 21 12:03:40 2023 +0100 @@ -21,8 +21,10 @@ """ Constructor - @param variable template variable name (string) - @param parent parent widget of this dialog (QWidget) + @param variable template variable name + @type str + @param parent parent widget of this dialog + @type QWidget """ super().__init__(parent) self.setupUi(self) @@ -33,6 +35,7 @@ """ Public method to get the value for the variable. - @return value for the template variable (string) + @return value for the template variable + @rtype str """ return self.variableEdit.toPlainText()