(contact_id: str)
| 452 | |
| 453 | if self.payload is not None and self.payload.mention_ids is not None: |
| 454 | async def id_to_contact(contact_id: str) -> Contact: |
| 455 | contact = self.wechaty.Contact.load(contact_id) |
| 456 | await contact.ready() |
| 457 | return contact |
| 458 | |
| 459 | # TODO -> change to python async best practice |
| 460 | contacts = [ |