[#398] Removed unused `stt` response module.
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Fabio Manganiello 2024-05-09 11:00:36 +02:00
parent 3277c56b43
commit 929ac09cae
Signed by: blacklight
GPG Key ID: D90FBA7F76362774
3 changed files with 0 additions and 17 deletions

View File

@ -1,5 +0,0 @@
``stt``
==================================
.. automodule:: platypush.message.response.stt
:members:

View File

@ -11,6 +11,5 @@ Responses
platypush/responses/printer.cups.rst
platypush/responses/qrcode.rst
platypush/responses/ssh.rst
platypush/responses/stt.rst
platypush/responses/tensorflow.rst
platypush/responses/translate.rst

View File

@ -1,11 +0,0 @@
from platypush.message.response import Response
class SpeechDetectedResponse(Response):
def __init__(self, *args, speech: str, **kwargs):
super().__init__(*args, output={
'speech': speech
}, **kwargs)
# vim:sw=4:ts=4:et: