22 lines
582 B
Python
Raw Normal View History

2019-01-23 00:33:11 +01:00
#!/bin/python
# -*- coding: utf-8 -*-
# Fenrir TTY screen reader
# By Chrys, Storm Dragon, and contributers.
from fenrirscreenreader.core import debug
class command():
def __init__(self):
pass
def initialize(self, environment):
self.env = environment
def shutdown(self):
pass
def getDescription(self):
return 'No description found'
def run(self):
2019-02-04 21:21:10 +01:00
self.env['runtime']['outputManager'].presentText('ok i run replace macro' , interrupt=True)
2019-01-23 00:33:11 +01:00
def setCallback(self, callback):
pass