From 03a8e6936779eef3089995536305d5ed9388f800 Mon Sep 17 00:00:00 2001 From: jsdio Date: Sat, 7 Oct 2023 05:56:33 +0300 Subject: [PATCH] feat: small fixes --- src/assistant/lib/stt/services.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/assistant/lib/stt/services.py b/src/assistant/lib/stt/services.py index 415de57..d084331 100644 --- a/src/assistant/lib/stt/services.py +++ b/src/assistant/lib/stt/services.py @@ -1,7 +1,7 @@ -from typing import Protocol +import typing -class STTProtocol(Protocol): +class STTProtocol(typing.Protocol): async def speech_to_text(self, audio: bytes) -> str: ...