diff options
| author | schneefux <schneefux+commit@schneefux.xyz> | 2014-09-15 17:02:40 +0200 |
|---|---|---|
| committer | schneefux <schneefux+commit@schneefux.xyz> | 2014-09-25 20:28:58 +0200 |
| commit | 39ae3c87f1b6d722cfd844b8c75ae427dc5523d9 (patch) | |
| tree | ffa5239ea21ce08215783721b47215ef6faba9ff /client/stt.py | |
| parent | 619ad5ac1184b0940539bbde74c67e0799891fc4 (diff) | |
| download | jasper-client-39ae3c87f1b6d722cfd844b8c75ae427dc5523d9.tar.gz jasper-client-39ae3c87f1b6d722cfd844b8c75ae427dc5523d9.zip | |
Added get_config() to AbstractSTTEngine
Diffstat (limited to 'client/stt.py')
| -rw-r--r-- | client/stt.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/client/stt.py b/client/stt.py index af252c3..7ed7403 100644 --- a/client/stt.py +++ b/client/stt.py @@ -24,6 +24,10 @@ class AbstractSTTEngine(object): __metaclass__ = ABCMeta @classmethod + def get_config(cls): + return {} + + @classmethod @abstractmethod def is_available(cls): return True |
