Remove the Axes from the stack.
(self, a)
| 85 | return [*self._axes] # This relies on dict preserving order. |
| 86 | |
| 87 | def remove(self, a): |
| 88 | """Remove the Axes from the stack.""" |
| 89 | self._axes.pop(a) |
| 90 | |
| 91 | def bubble(self, a): |
| 92 | """Move an Axes, which must already exist in the stack, to the top.""" |
no test coverage detected