mirror of
https://github.com/brmlab/edubrm.git
synced 2025-06-08 21:03:59 +02:00
12 lines
183 B
Python
12 lines
183 B
Python
from module import Module
|
|
|
|
class ModuleA(Module):
|
|
|
|
title = "Acko"
|
|
|
|
def setup(self, area):
|
|
print 'setup A'
|
|
print area
|
|
|
|
def run(self):
|
|
print 'run A'
|