We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8e9c790 commit 491d6abCopy full SHA for 491d6ab
deltachat-rpc-client/src/deltachat_rpc_client/account.py
@@ -141,6 +141,9 @@ def make_vcard(self, contacts: list[Contact]) -> str:
141
return self._rpc.make_vcard(self.id, contact_ids)
142
143
def import_vcard(self, vcard: str) -> list[Contact]:
144
+ """Import vCard.
145
+
146
+ Return created or modified contacts in the order they appear in vCard."""
147
contact_ids = self._rpc.import_vcard_contents(self.id, vcard)
148
return [Contact(self, contact_id) for contact_id in contact_ids]
149
0 commit comments