(self, chunks, **kwargs)
| 51 | self.chunks = getattr(obj, "chunks", None) # type: ignore[assignment] |
| 52 | |
| 53 | def rechunk(self, chunks, **kwargs): |
| 54 | copied = self.copy() |
| 55 | copied.chunks = chunks |
| 56 | return copied |
| 57 | |
| 58 | |
| 59 | class DummyChunkManager(ChunkManagerEntrypoint): |
no test coverage detected