mirror of
https://github.com/thelsing/knx.git
synced 2025-01-07 00:05:47 +01:00
11 lines
219 B
Python
11 lines
219 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
from widget_module import Widget
|
||
|
|
||
|
|
||
|
class DerivedWidget(Widget):
|
||
|
def __init__(self, message):
|
||
|
super(DerivedWidget, self).__init__(message)
|
||
|
|
||
|
def the_answer(self):
|
||
|
return 42
|