(self, destination_zip: ZipFileInterface)
| 201 | self.documents.save(bcf_zip) |
| 202 | |
| 203 | def _save_topics(self, destination_zip: ZipFileInterface) -> None: |
| 204 | for topic_handler in self.topics.values(): |
| 205 | topic_handler.save(destination_zip) |
| 206 | |
| 207 | def add_topic( |
| 208 | self, title: str, description: str, author: str, topic_type: str = "", topic_status: str = "" |