small optimizations and cleanups by Moritz Venn
[enigma2.git] / lib / python / Screens / Wizard.py
index 7d454f43b4258105d38436576d841097711430e9..555110a4f9559e995cf864e244be0f96f62811e1 100755 (executable)
@@ -604,10 +604,7 @@ class WizardManager:
                self.wizards.append((wizard, precondition, priority))
        
        def getWizards(self):
-               list = []
-               for x in self.wizards:
-                       if x[1] == 1: # precondition
-                               list.append((x[2], x[0]))
-               return list
+               # x[1] is precondition
+               return [(x[2], x[0]) for x in self.wizards if x[1] == 1]
 
 wizardManager = WizardManager()