(self)
| 53 | return finalize, () |
| 54 | |
| 55 | def __dask_postpersist__(self): |
| 56 | state = self.expr.lower_completely() |
| 57 | return from_graph, ( |
| 58 | state._meta, |
| 59 | state.chunks, |
| 60 | # FIXME: This is using keys of the unoptimized graph |
| 61 | list(flatten(state.__dask_keys__())), |
| 62 | key_split(state._name), |
| 63 | ) |
| 64 | |
| 65 | @property |
| 66 | def dask(self): |
nothing calls this directly
no test coverage detected