(self, keep_attrs)
| 252 | raise ValueError(f"Mapping argument is necessary for {self.ndim}d-rolling.") |
| 253 | |
| 254 | def _get_keep_attrs(self, keep_attrs): |
| 255 | if keep_attrs is None: |
| 256 | keep_attrs = _get_keep_attrs(default=True) |
| 257 | |
| 258 | return keep_attrs |
| 259 | |
| 260 | |
| 261 | class DataArrayRolling(Rolling["DataArray"]): |
no test coverage detected