aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Screens
diff options
context:
space:
mode:
Diffstat (limited to 'lib/python/Screens')
-rw-r--r--lib/python/Screens/Wizard.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/python/Screens/Wizard.py b/lib/python/Screens/Wizard.py
index 01797267..10bb9f50 100644
--- a/lib/python/Screens/Wizard.py
+++ b/lib/python/Screens/Wizard.py
@@ -81,7 +81,6 @@ class Wizard(Screen, HelpableScreen):
self["list"] = MenuList(self.list)
self.onShown.append(self.updateValues)
- self.onClose.append(self.delReferences)
self["actions"] = NumberActionMap(["WizardActions", "NumberActions"],
{
@@ -213,9 +212,6 @@ class Wizard(Screen, HelpableScreen):
self.currStep += 1
self.updateValues()
- def delReferences(self):
- del self.configInstance
-
class WizardManager:
def __init__(self):
self.wizards = []