diff -r 1444b4bee64b -r 093dcebe5ecb src/eric7/Templates/TemplateMultipleVariablesDialog.py --- a/src/eric7/Templates/TemplateMultipleVariablesDialog.py Sun Dec 03 16:44:52 2023 +0100 +++ b/src/eric7/Templates/TemplateMultipleVariablesDialog.py Sun Dec 03 19:46:34 2023 +0100 @@ -131,7 +131,7 @@ @return dictionary with the variable as a key and its value (string) """ values = {} - for var, textEdit in list(self.variablesEntries.items()): + for var, textEdit in self.variablesEntries.items(): try: values[var] = textEdit.text() except AttributeError: