(self, **kwargs)
| 45 | # with the many possible return values |
| 46 | @functools.wraps(dataarray_plot.plot, assigned=("__doc__", "__annotations__")) |
| 47 | def __call__(self, **kwargs) -> Any: |
| 48 | return dataarray_plot.plot(self._da, **kwargs) |
| 49 | |
| 50 | @functools.wraps(dataarray_plot.hist) |
| 51 | def hist( |