(self)
| 104 | self.load_cache() |
| 105 | |
| 106 | async def init_cache_messages(self): |
| 107 | if len(self.cache_messages) and not len(self.memory_snapshot): |
| 108 | for id, messages in self.cache_messages.items(): |
| 109 | await self.add_single(messages, msg_id=id) |
| 110 | |
| 111 | def save_cache(self): |
| 112 | """ |
nothing calls this directly
no test coverage detected