(self)
| 73 | |
| 74 | @functools.cached_property |
| 75 | def chunks(self): |
| 76 | return tuple(map(tuple, _overlap_internal_chunks(self.array.chunks, self.axes))) |
| 77 | |
| 78 | @functools.cached_property |
| 79 | def _name(self) -> str: |
nothing calls this directly
no test coverage detected