(self, bcf_zip: ZipFileInterface, topic_dir: str, vp_name: str)
| 147 | bcf_zip.writestr(f"{topic_dir}/{filename}", self.snapshot) |
| 148 | |
| 149 | def _save_visinfo(self, bcf_zip: ZipFileInterface, topic_dir: str, vp_name: str) -> None: |
| 150 | bcf_zip.writestr( |
| 151 | f"{topic_dir}/{vp_name}", |
| 152 | self._xml_handler.serialize(self.visualization_info), |
| 153 | ) |
| 154 | |
| 155 | def _save_bitmaps(self, bcf_zip: ZipFileInterface, topic_dir: str) -> None: |
| 156 | if not self.bitmaps: |