List the Axes that have been added to the figure.
(self)
| 81 | self._counter = itertools.count() |
| 82 | |
| 83 | def as_list(self): |
| 84 | """List the Axes that have been added to the figure.""" |
| 85 | return [*self._axes] # This relies on dict preserving order. |
| 86 | |
| 87 | def remove(self, a): |
| 88 | """Remove the Axes from the stack.""" |
no outgoing calls
no test coverage detected