(self)
| 319 | |
| 320 | @property |
| 321 | def axes(self) -> np.ndarray: |
| 322 | warnings.warn( |
| 323 | ( |
| 324 | "self.axes is deprecated since 2022.11 in order to align with " |
| 325 | "matplotlibs plt.subplots, use self.axs instead." |
| 326 | ), |
| 327 | FutureWarning, |
| 328 | stacklevel=2, |
| 329 | ) |
| 330 | return self.axs |
| 331 | |
| 332 | @axes.setter |
| 333 | def axes(self, axs: np.ndarray) -> None: |
no outgoing calls