From d17ac9c83c69f7c434744d1ad1cb960bdc2bffa1 Mon Sep 17 00:00:00 2001 From: adbenitez Date: Thu, 1 Dec 2022 03:34:43 -0500 Subject: [PATCH] add start_rpc_server() doc string --- deltachat-rpc-client/src/deltachat_rpc_client/rpc.py | 1 + 1 file changed, 1 insertion(+) diff --git a/deltachat-rpc-client/src/deltachat_rpc_client/rpc.py b/deltachat-rpc-client/src/deltachat_rpc_client/rpc.py index abdc33d45..4be830ff5 100644 --- a/deltachat-rpc-client/src/deltachat_rpc_client/rpc.py +++ b/deltachat-rpc-client/src/deltachat_rpc_client/rpc.py @@ -68,6 +68,7 @@ class Rpc: async def start_rpc_server(*args, **kwargs) -> Rpc: + """The given arguments will be passed to asyncio.create_subprocess_exec()""" proc = await asyncio.create_subprocess_exec( "deltachat-rpc-server", stdin=asyncio.subprocess.PIPE,