blob: 63bfed5b73392f38b4e813f25219ca2293457696 (
plain)
1
2
3
4
5
6
7
|
from Screen import Screen
from Components.Pixmap import Pixmap
class UnhandledKey(Screen):
def __init__(self, session):
Screen.__init__(self, session)
self["UnhandledKeyPixmap"] = Pixmap()
|