diff -r e440aaf179ce -r 64157aeb0312 src/eric7/Templates/TemplateMultipleVariablesDialog.py --- a/src/eric7/Templates/TemplateMultipleVariablesDialog.py Wed Dec 20 19:28:22 2023 +0100 +++ b/src/eric7/Templates/TemplateMultipleVariablesDialog.py Thu Dec 21 12:03:40 2023 +0100 @@ -34,8 +34,10 @@ """ Constructor - @param variables list of template variable names (list of strings) - @param parent parent widget of this dialog (QWidget) + @param variables list of template variable names + @type list of str + @param parent parent widget of this dialog + @type QWidget """ super().__init__(parent) @@ -128,7 +130,8 @@ """ Public method to get the values for all variables. - @return dictionary with the variable as a key and its value (string) + @return dictionary with the variable as a key and its value + @rtype str """ values = {} for var, textEdit in self.variablesEntries.items():