(filename, figure, width, height)
| 116 | |
| 117 | |
| 118 | def write_to_png_file(filename, figure, width, height): |
| 119 | p = Path(__file__).resolve().parent / filename |
| 120 | figure.write_image(str(p), width=width, height=height) |
| 121 | |
| 122 | |
| 123 | if __name__ == '__main__': |
no outgoing calls
no test coverage detected