mirror of
https://github.com/brmlab/edubrm.git
synced 2025-06-08 21:03:59 +02:00
8 lines
136 B
Python
8 lines
136 B
Python
class ModuleA():
|
|
|
|
def __init__(self):
|
|
self.title = 'A'
|
|
self.widget = None
|
|
|
|
def run(self):
|
|
print 'run A'
|