(self, id, caption)
| 63 | return user.get('file_id', None) |
| 64 | |
| 65 | async def set_caption(self, id, caption): |
| 66 | await self.col.update_one({'_id': int(id)}, {'$set': {'caption': caption}}) |
| 67 | |
| 68 | async def get_caption(self, id): |
| 69 | user = await self.col.find_one({'_id': int(id)}) |
no outgoing calls
no test coverage detected