(numb)
| 156 | |
| 157 | @app.route('/plot<numb>.png') |
| 158 | def plot_png(numb): |
| 159 | fig = create_figure(day=numb) |
| 160 | output = io.BytesIO() |
| 161 | FigureCanvas(fig).print_png(output) |
| 162 | return Response(output.getvalue(), mimetype='image/png') |
| 163 | |
| 164 | |
| 165 | @app.route('/plot_time.png') |
nothing calls this directly
no test coverage detected