Skip to content

Commit

Permalink
ci: fix support for anyio 4 typing
Browse files Browse the repository at this point in the history
  • Loading branch information
mariobuikhuizen committed Sep 1, 2023
1 parent baa3662 commit b7bfa6d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion solara/server/starlette.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ async def receive(self):
# version 3+
fut = self.portal.start_task_soon(self.ws.receive)
else:
fut = self.portal.spawn_task(self.ws.receive)
fut = self.portal.spawn_task(self.ws.receive) # type: ignore

message = await asyncio.wrap_future(fut)
if "text" in message:
Expand Down

0 comments on commit b7bfa6d

Please sign in to comment.