Proper handling of async responses to peers

This commit is contained in:
Kovid Goyal
2021-10-31 21:09:24 +05:30
parent 218582ced8
commit d53d92b890
6 changed files with 23 additions and 13 deletions

View File

@@ -74,6 +74,10 @@ class WindowSystemMouseEvent(NamedTuple):
ConvertibleToNumbers = Union[str, bytes, int, float]
class AsyncResponse:
pass
if TYPE_CHECKING:
class RunOnce(Generic[_T]):