(
self, *args, **kwargs
)
| 49 | |
| 50 | @functools.wraps(dataarray_plot.hist) |
| 51 | def hist( |
| 52 | self, *args, **kwargs |
| 53 | ) -> tuple[np.ndarray, np.ndarray, BarContainer | Polygon]: |
| 54 | return dataarray_plot.hist(self._da, *args, **kwargs) |
| 55 | |
| 56 | @overload |
| 57 | def line( # type: ignore[misc,unused-ignore] # None is hashable :( |
no outgoing calls