diff --git a/deltachat-rpc-client/src/deltachat_rpc_client/account.py b/deltachat-rpc-client/src/deltachat_rpc_client/account.py index a3d073e69..d9158cff4 100644 --- a/deltachat-rpc-client/src/deltachat_rpc_client/account.py +++ b/deltachat-rpc-client/src/deltachat_rpc_client/account.py @@ -145,6 +145,10 @@ class Account: [contact] = self.import_vcard(vcard) return contact.create_chat() + def get_device_chat(self) -> Chat: + """Return device chat.""" + return self.device_contact.create_chat() + def get_contact_by_id(self, contact_id: int) -> Contact: """Return Contact instance for the given contact ID.""" return Contact(self, contact_id)