cleanup
[enigma2.git] / lib / python / Components / ConditionalWidget.py
index f826c296eb90c4527e68298bada5cdd735099212..c1baceb25400a1c98d0c85c9e499a296e9a5579d 100644 (file)
@@ -24,13 +24,10 @@ class ConditionalWidget(GUIComponent):
        def update(self):
                if (self.conditionalFunction != None):
                        try:
        def update(self):
                if (self.conditionalFunction != None):
                        try:
-                               self.conditionalFunction() # check, if the conditionalfunction is still valid
                                self.activateCondition(self.conditionalFunction())
                        except:
                                self.conditionalFunction = None
                                self.activateCondition(False)
                                self.activateCondition(self.conditionalFunction())
                        except:
                                self.conditionalFunction = None
                                self.activateCondition(False)
-                       
-import time
 
 class BlinkingWidget(GUIComponent):
        def __init__(self):
 
 class BlinkingWidget(GUIComponent):
        def __init__(self):