test_interpreter.py
Go to the documentation of this file.
1 # -*- coding: utf-8 -*-
2 from widget_module import Widget
3 
4 
5 class DerivedWidget(Widget):
6  def __init__(self, message):
7  super(DerivedWidget, self).__init__(message)
8 
9  def the_answer(self):
10  return 42


gtsam
Author(s):
autogenerated on Sat May 8 2021 02:46:03