6 lines
123 B
Python
6 lines
123 B
Python
|
from sugar.activity.Activity import Activity
|
||
|
|
||
|
class TestActivity(Activity):
|
||
|
def __init__(self):
|
||
|
Activity.__init__(self)
|