11 lines
127 B
Python
11 lines
127 B
Python
|
|
class TestAction():
|
|
|
|
def __init__(self, jail, name):
|
|
pass
|
|
|
|
def start(self):
|
|
pass
|
|
|
|
Action = TestAction
|