()
| 494 | def _get_ax_fn(): |
| 495 | @pn.depends() |
| 496 | def get_ax(): |
| 497 | from matplotlib.backends.backend_agg import FigureCanvas |
| 498 | from matplotlib.pyplot import Figure |
| 499 | |
| 500 | Interactive._fig = fig = Figure() |
| 501 | FigureCanvas(fig) |
| 502 | return fig.subplots() |
| 503 | |
| 504 | return get_ax |
| 505 |
nothing calls this directly
no outgoing calls
no test coverage detected