mirror of
https://github.com/chatmail/core.git
synced 2026-05-07 08:56:30 +03:00
fix type hint in rpc.py
This commit is contained in:
@@ -11,7 +11,7 @@ class JsonRpcError(Exception):
|
|||||||
|
|
||||||
|
|
||||||
class Rpc:
|
class Rpc:
|
||||||
def __init__(self, process: asyncio.Process) -> None:
|
def __init__(self, process: asyncio.subprocess.Process) -> None:
|
||||||
self.process = process
|
self.process = process
|
||||||
self.event_queues: Dict[int, asyncio.Queue] = {}
|
self.event_queues: Dict[int, asyncio.Queue] = {}
|
||||||
self.id = 0
|
self.id = 0
|
||||||
|
|||||||
Reference in New Issue
Block a user