aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components/Renderer/Renderer.py
blob: 373aa02c456a3d1eae285ef2a3b66489ddc1cf33 (plain)
1
2
3
4
5
6
7
from Components.GUIComponent import GUIComponent
from Components.Element import Element

class Renderer(GUIComponent, Element):
	def __init__(self):
		Element.__init__(self)
		GUIComponent.__init__(self)