diff options
| author | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2007-07-22 09:54:05 +0000 |
|---|---|---|
| committer | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2007-07-22 09:54:05 +0000 |
| commit | 67b53c1cb06988394c35a6e965c99b72b67fe1be (patch) | |
| tree | 1761f6b70a9a6aa349a003842162672a7787c85e /lib/python/Components/Sources | |
| parent | a507c89e5f0424b634cb13178c39c56d19945563 (diff) | |
| download | enigma2-67b53c1cb06988394c35a6e965c99b72b67fe1be.tar.gz enigma2-67b53c1cb06988394c35a6e965c99b72b67fe1be.zip | |
cleanup some imports
Diffstat (limited to 'lib/python/Components/Sources')
| -rw-r--r-- | lib/python/Components/Sources/Clock.py | 1 | ||||
| -rw-r--r-- | lib/python/Components/Sources/CurrentService.py | 2 | ||||
| -rw-r--r-- | lib/python/Components/Sources/EventInfo.py | 2 | ||||
| -rw-r--r-- | lib/python/Components/Sources/FrontendStatus.py | 2 | ||||
| -rw-r--r-- | lib/python/Components/Sources/List.py | 1 | ||||
| -rw-r--r-- | lib/python/Components/Sources/StaticText.py | 1 |
6 files changed, 1 insertions, 8 deletions
diff --git a/lib/python/Components/Sources/Clock.py b/lib/python/Components/Sources/Clock.py index 4833ddde..4c4b41e6 100644 --- a/lib/python/Components/Sources/Clock.py +++ b/lib/python/Components/Sources/Clock.py @@ -1,4 +1,3 @@ -from Tools.Event import Event from Components.Element import cached from enigma import eTimer import time diff --git a/lib/python/Components/Sources/CurrentService.py b/lib/python/Components/Sources/CurrentService.py index 8e582d55..acc624a2 100644 --- a/lib/python/Components/Sources/CurrentService.py +++ b/lib/python/Components/Sources/CurrentService.py @@ -3,8 +3,6 @@ from enigma import iPlayableService from Source import Source from Components.Element import cached -from time import time - class CurrentService(PerServiceBase, Source): def __init__(self, navcore): Source.__init__(self) diff --git a/lib/python/Components/Sources/EventInfo.py b/lib/python/Components/Sources/EventInfo.py index 72d5f18d..a4bc874f 100644 --- a/lib/python/Components/Sources/EventInfo.py +++ b/lib/python/Components/Sources/EventInfo.py @@ -1,10 +1,8 @@ from Components.PerServiceDisplay import PerServiceBase from Components.Element import cached -from Tools.Event import Event from enigma import iPlayableService from Source import Source -from time import time class EventInfo(PerServiceBase, Source, object): NOW = 0 diff --git a/lib/python/Components/Sources/FrontendStatus.py b/lib/python/Components/Sources/FrontendStatus.py index 1af03f95..5b7e5b0c 100644 --- a/lib/python/Components/Sources/FrontendStatus.py +++ b/lib/python/Components/Sources/FrontendStatus.py @@ -1,5 +1,5 @@ from Source import Source -from enigma import eTimer, iFrontendInformation +from enigma import eTimer class FrontendStatus(Source): def __init__(self, service_source = None, frontend_source = None): diff --git a/lib/python/Components/Sources/List.py b/lib/python/Components/Sources/List.py index e141da59..d7221296 100644 --- a/lib/python/Components/Sources/List.py +++ b/lib/python/Components/Sources/List.py @@ -1,5 +1,4 @@ from Source import Source -from Tools.Event import Event from Components.Element import cached class List(Source, object): diff --git a/lib/python/Components/Sources/StaticText.py b/lib/python/Components/Sources/StaticText.py index 2f8f0e18..6f775c44 100644 --- a/lib/python/Components/Sources/StaticText.py +++ b/lib/python/Components/Sources/StaticText.py @@ -1,5 +1,4 @@ from Source import Source -from Components.Element import cached class StaticText(Source): # filter is a function which filters external, untrusted strings |
