Add an Axes to the stack, ignoring it if already present.
(self, a)
| 95 | self._axes[a] = next(self._counter) |
| 96 | |
| 97 | def add(self, a): |
| 98 | """Add an Axes to the stack, ignoring it if already present.""" |
| 99 | if a not in self._axes: |
| 100 | self._axes[a] = next(self._counter) |
| 101 | |
| 102 | def current(self): |
| 103 | """Return the active Axes, or None if the stack is empty.""" |
no outgoing calls
no test coverage detected