We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a3207e2 commit b907222Copy full SHA for b907222
src/idom/core/dispatcher.py
@@ -37,7 +37,7 @@ async def dispatch_single_view(
37
task_group.start_soon(_single_incoming_loop, layout, recv)
38
39
40
-_SharedViewDispatcherFuture = Callable[[SendCoroutine, RecvCoroutine], Future[None]]
+_SharedViewDispatcherFuture = Callable[[SendCoroutine, RecvCoroutine], "Future[None]"]
41
_SharedViewDispatcherCoro = Callable[[SendCoroutine, RecvCoroutine], Awaitable[None]]
42
43
src/idom/server/tornado.py
@@ -1,3 +1,5 @@
1
+from __future__ import annotations
2
+
3
import asyncio
4
import json
5
from asyncio import Queue as AsyncQueue
0 commit comments