From ab7732d9ae405758cd02d435f7238458c2cd6a52 Mon Sep 17 00:00:00 2001 From: adbenitez Date: Thu, 1 Dec 2022 02:26:50 -0500 Subject: [PATCH] fix type hint in rpc.py --- deltachat-rpc-client/src/deltachat_rpc_client/rpc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deltachat-rpc-client/src/deltachat_rpc_client/rpc.py b/deltachat-rpc-client/src/deltachat_rpc_client/rpc.py index 9f5e21e3b..a63e7cd46 100644 --- a/deltachat-rpc-client/src/deltachat_rpc_client/rpc.py +++ b/deltachat-rpc-client/src/deltachat_rpc_client/rpc.py @@ -11,7 +11,7 @@ class JsonRpcError(Exception): class Rpc: - def __init__(self, process: asyncio.Process) -> None: + def __init__(self, process: asyncio.subprocess.Process) -> None: self.process = process self.event_queues: Dict[int, asyncio.Queue] = {} self.id = 0