mirror of
https://github.com/brmlab/edubrm.git
synced 2025-06-08 12:53:59 +02:00
11 lines
184 B
Python
11 lines
184 B
Python
class ModuleA():
|
|
|
|
def __init__(self):
|
|
self.title = 'A'
|
|
self.widget = None
|
|
|
|
def start(self):
|
|
print 'start A'
|
|
|
|
def stop(self):
|
|
print 'stop A'
|