Skip to content

Commit 35cc43c

Browse files
authored
Merge pull request lightspeed-core#1669 from tisnik/lcore-2104
LCORE-2104: Added missing type argument
2 parents 38fae72 + e07ee40 commit 35cc43c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/app/endpoints/a2a.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -862,7 +862,7 @@ async def receive() -> MutableMapping[str, Any]:
862862
logger.info("Handling A2A streaming request")
863863

864864
# Create queue for passing chunks from ASGI app to response generator
865-
chunk_queue: asyncio.Queue = asyncio.Queue()
865+
chunk_queue: asyncio.Queue[Optional[bytes]] = asyncio.Queue()
866866

867867
async def streaming_send(message: dict[str, Any]) -> None:
868868
"""Send callback that queues chunks for streaming."""

0 commit comments

Comments
 (0)