reshow an nbagg figure
(fig)
| 197 | |
| 198 | |
| 199 | def _reshow_nbagg_figure(fig): |
| 200 | """reshow an nbagg figure""" |
| 201 | try: |
| 202 | reshow = fig.canvas.manager.reshow |
| 203 | except AttributeError: |
| 204 | raise NotImplementedError() |
| 205 | else: |
| 206 | reshow() |
| 207 | |
| 208 | |
| 209 | def select_figure_formats(shell, formats, **kwargs): |
nothing calls this directly
no outgoing calls
no test coverage detected