From 39ae3c87f1b6d722cfd844b8c75ae427dc5523d9 Mon Sep 17 00:00:00 2001 From: schneefux Date: Mon, 15 Sep 2014 17:02:40 +0200 Subject: Added get_config() to AbstractSTTEngine --- client/stt.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/client/stt.py b/client/stt.py index af252c3..7ed7403 100644 --- a/client/stt.py +++ b/client/stt.py @@ -23,6 +23,10 @@ class AbstractSTTEngine(object): __metaclass__ = ABCMeta + @classmethod + def get_config(cls): + return {} + @classmethod @abstractmethod def is_available(cls): -- cgit v1.3.1