(self, destination_zip: ZipFileInterface)
| 225 | destination_zip.writestr(inner_file, self._xml_handler.serialize(xml_obj)) |
| 226 | |
| 227 | def _save_topics(self, destination_zip: ZipFileInterface) -> None: |
| 228 | for topic_handler in self.topics.values(): |
| 229 | topic_handler.save(destination_zip) |
| 230 | |
| 231 | def add_topic( |
| 232 | self, title: str, description: str, author: str, topic_type: str = "", topic_status: str = "" |