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] /src/content/addons-scripting.md?h=master' type='application/atom+xml'/>
aboutsummaryrefslogtreecommitdiffstats
path: root/docs/src/content/addons-scripting.md
blob: 6a18eaf4ed52319b3bb18ae590d9011950001e63 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32