feat: small fixes

This commit is contained in:
2023-10-07 05:56:33 +03:00
parent 0a61b4ada4
commit 03a8e69367
+2 -2
View File
@@ -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:
...