summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorschneefux <schneefux+commit@schneefux.xyz>2014-09-15 17:02:40 +0200
committerschneefux <schneefux+commit@schneefux.xyz>2014-09-25 20:28:58 +0200
commit39ae3c87f1b6d722cfd844b8c75ae427dc5523d9 (patch)
treeffa5239ea21ce08215783721b47215ef6faba9ff
parent619ad5ac1184b0940539bbde74c67e0799891fc4 (diff)
downloadjasper-client-39ae3c87f1b6d722cfd844b8c75ae427dc5523d9.tar.gz
jasper-client-39ae3c87f1b6d722cfd844b8c75ae427dc5523d9.zip
Added get_config() to AbstractSTTEngine
-rw-r--r--client/stt.py4
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