(self)
| 253 | plt.show() |
| 254 | |
| 255 | def close(self) -> None: |
| 256 | for name, fig in self.figures.items(): |
| 257 | plt.close(fig) |
| 258 | |
| 259 | def export(self, file_path: str, confirm_overwrite: bool = True) -> None: |
| 260 | base, ext = os.path.splitext(file_path) |
no outgoing calls