src/eric7/Templates/TemplateMultipleVariablesDialog.py

branch
eric7
changeset 10373
093dcebe5ecb
parent 9653
e67609152c5e
child 10431
64157aeb0312
--- 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:

eric ide

mercurial