Remove the `~.axes.Axes` *ax* from the figure; update the current Axes.
(self, ax)
| 928 | return axs |
| 929 | |
| 930 | def delaxes(self, ax): |
| 931 | """ |
| 932 | Remove the `~.axes.Axes` *ax* from the figure; update the current Axes. |
| 933 | """ |
| 934 | self._remove_axes(ax, owners=[self._axstack, self._localaxes]) |
| 935 | |
| 936 | def _remove_axes(self, ax, owners): |
| 937 | """ |