(self)
| 451 | return ax |
| 452 | |
| 453 | def get_aspect(self): |
| 454 | if self._aspect is None: |
| 455 | aspect = self._axes.get_aspect() |
| 456 | if aspect == "auto": |
| 457 | return False |
| 458 | else: |
| 459 | return True |
| 460 | else: |
| 461 | return self._aspect |
| 462 | |
| 463 | def get_position(self): |
| 464 | if self._pos is None: |
nothing calls this directly
no test coverage detected