(self, key)
| 149 | |
| 150 | class IndexingDask(Indexing): |
| 151 | def setup(self, key): |
| 152 | requires_dask() |
| 153 | super().setup(key) |
| 154 | self.ds = self.ds.chunk({"x": 100, "y": 50, "t": 50}) |
| 155 | |
| 156 | |
| 157 | class BooleanIndexing: |
nothing calls this directly
no test coverage detected