From 8e9c79061f154e3810c1547117499fad4bca6bdd Mon Sep 17 00:00:00 2001 From: link2xt Date: Mon, 10 Mar 2025 00:34:31 +0000 Subject: [PATCH] docs(deltachat-rpc-client): document Account.check_qr() --- deltachat-rpc-client/src/deltachat_rpc_client/account.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/deltachat-rpc-client/src/deltachat_rpc_client/account.py b/deltachat-rpc-client/src/deltachat_rpc_client/account.py index 74753a666..74dbd3e37 100644 --- a/deltachat-rpc-client/src/deltachat_rpc_client/account.py +++ b/deltachat-rpc-client/src/deltachat_rpc_client/account.py @@ -95,6 +95,10 @@ class Account: return self.get_config("selfavatar") def check_qr(self, qr): + """Parse QR code contents. + + This function takes the raw text scanned + and checks what can be done with it.""" return self._rpc.check_qr(self.id, qr) def set_config_from_qr(self, qr: str):