(self, *args, **kwargs)
| 25 | |
| 26 | class UnstackingDask(Unstacking): |
| 27 | def setup(self, *args, **kwargs): |
| 28 | requires_dask() |
| 29 | super().setup(**kwargs) |
| 30 | self.da_full = self.da_full.chunk({"flat_dim": 25}) |
| 31 | |
| 32 | |
| 33 | class UnstackingSparse(Unstacking): |
nothing calls this directly
no test coverage detected