1
0
mirror of https://github.com/thelsing/knx.git synced 2025-04-09 01:16:57 +02:00
knx/examples/knxPython/pybind11/tests/test_embed/test_interpreter.py
2019-12-12 21:42:51 +01:00

10 lines
195 B
Python

from widget_module import Widget
class DerivedWidget(Widget):
def __init__(self, message):
super(DerivedWidget, self).__init__(message)
def the_answer(self):
return 42