(self)
| 2760 | # use it, for some reason. |
| 2761 | |
| 2762 | def _repr_html_(self): |
| 2763 | # We can't use "isinstance" here, because then we'd end up importing |
| 2764 | # webagg unconditionally. |
| 2765 | if 'WebAgg' in type(self.canvas).__name__: |
| 2766 | from matplotlib.backends import backend_webagg |
| 2767 | return backend_webagg.ipython_inline_display(self) |
| 2768 | |
| 2769 | def show(self, warn=True): |
| 2770 | """ |
no outgoing calls