14 lines
312 B
Python
14 lines
312 B
Python
|
#!/bin/python
|
||
|
# -*- coding: utf-8 -*-
|
||
|
|
||
|
# Fenrir TTY screen reader
|
||
|
# By Chrys, Storm Dragon, and contributers.
|
||
|
|
||
|
import time
|
||
|
from fenrirscreenreader.core import debug
|
||
|
from fenrirscreenreader.core.inputDriver import inputDriver
|
||
|
|
||
|
class driver(inputDriver):
|
||
|
def __init__(self):
|
||
|
inputDriver.__init__(self)
|