Files
fenrir/src/fenrirscreenreader/commands/onPlugInputDevice/50000-UpdateDevices.py
2018-05-18 11:11:09 +02:00

23 lines
562 B
Python
Executable File

#!/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):
pass
#self.env['runtime']['inputManager'].updateInputDevices()
def setCallback(self, callback):
pass