fix type hint in rpc.py

This commit is contained in:
adbenitez
2022-12-01 02:26:50 -05:00
parent 46594ec707
commit ab7732d9ae

View File

@@ -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