mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2025-04-21 19:30:03 +02:00

* removed pybind as submodule * added hardcopy of pybind11 2.10.0 * rename pybind11 folder to avoid conflicts when changing branch Co-authored-by: Dhanya Thattil <dhanya.thattil@psi.ch>
15 lines
237 B
Python
15 lines
237 B
Python
import sys
|
|
|
|
from widget_module import Widget
|
|
|
|
|
|
class DerivedWidget(Widget):
|
|
def __init__(self, message):
|
|
super().__init__(message)
|
|
|
|
def the_answer(self):
|
|
return 42
|
|
|
|
def argv0(self):
|
|
return sys.argv[0]
|