13 lines
283 B
Python
13 lines
283 B
Python
|
#!/bin/python
|
||
|
|
||
|
class command():
|
||
|
def __init__(self):
|
||
|
pass
|
||
|
def run(self, environment):
|
||
|
environment['runtime']['speechDriver'].cancel()
|
||
|
return environment
|
||
|
def setCallback(self, callback):
|
||
|
pass
|
||
|
def shutdown(self):
|
||
|
pass
|