(futures, meta, divisions, name)
| 581 | |
| 582 | @staticmethod |
| 583 | def _postpersist(futures, meta, divisions, name): |
| 584 | return from_graph( |
| 585 | futures, |
| 586 | meta, |
| 587 | divisions, |
| 588 | sorted(futures), |
| 589 | name, |
| 590 | ) |
| 591 | |
| 592 | def __dask_postpersist__(self): |
| 593 | return FrameBase._postpersist, ( |
nothing calls this directly
no test coverage detected