1 from Screen import Screen
2 from Components.TimerList import TimerList
3 from Components.ActionMap import ActionMap
5 class TimerSelection(Screen):
6 def __init__(self, session, list):
7 Screen.__init__(self, session)
11 self["timerlist"] = TimerList(self.list)
13 self["actions"] = ActionMap(["OkCancelActions"],
24 self.close(self["timerlist"].getCurrentIndex())