mirror of
https://github.com/OPM/opm-simulators.git
synced 2025-02-25 18:55:30 -06:00
10 lines
195 B
Python
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
|