Update ruff to v0.0.280 (#97102)

This commit is contained in:
Franck Nijhof
2023-07-23 22:00:26 +02:00
committed by GitHub
parent bdd253328d
commit 86708b5590
20 changed files with 25 additions and 60 deletions

View File

@@ -111,7 +111,7 @@ async def websocket_run(
if start_stage == PipelineStage.STT:
# Audio pipeline that will receive audio as binary websocket messages
audio_queue: "asyncio.Queue[bytes]" = asyncio.Queue()
audio_queue: asyncio.Queue[bytes] = asyncio.Queue()
incoming_sample_rate = msg["input"]["sample_rate"]
async def stt_stream() -> AsyncGenerator[bytes, None]: