()
| 236 | |
| 237 | |
| 238 | def main() -> None: |
| 239 | OUT_DIR.mkdir(parents=True, exist_ok=True) |
| 240 | rows = read_rows() |
| 241 | write_data(rows) |
| 242 | image = draw_plot(rows) |
| 243 | image.save(PNG_OUT, dpi=(300, 300)) |
| 244 | image.save(PDF_OUT, "PDF", resolution=300.0) |
| 245 | print(PNG_OUT) |
| 246 | print(PDF_OUT) |
| 247 | print(CSV_OUT) |
| 248 | |
| 249 | |
| 250 | if __name__ == "__main__": |
no test coverage detected