From 50a73666fda041a5c935ea9ab8aa261f7d17d8b3 Mon Sep 17 00:00:00 2001 From: missytake Date: Fri, 30 Jan 2026 21:12:55 +0100 Subject: [PATCH] api(jsonrpc): process events forever by default --- deltachat-rpc-client/src/deltachat_rpc_client/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deltachat-rpc-client/src/deltachat_rpc_client/client.py b/deltachat-rpc-client/src/deltachat_rpc_client/client.py index 11b3bb2fd..3fe61b289 100644 --- a/deltachat-rpc-client/src/deltachat_rpc_client/client.py +++ b/deltachat-rpc-client/src/deltachat_rpc_client/client.py @@ -104,7 +104,7 @@ class Client: def _process_events( self, - until_func: Callable[[AttrDict], bool], + until_func: Callable[[AttrDict], bool] = _forever, until_event: EventType = False, ) -> AttrDict: """Process events until the given callable evaluates to True,