(self)
| 590 | ) |
| 591 | |
| 592 | def __dask_postpersist__(self): |
| 593 | return FrameBase._postpersist, ( |
| 594 | self._meta, |
| 595 | self.divisions, |
| 596 | # Note: This prefix is wrong since optimization may actually yield a |
| 597 | # different one. That's should only be an issue for visualization. |
| 598 | key_split(self._name), |
| 599 | ) |
| 600 | |
| 601 | def __getattr__(self, key): |
| 602 | try: |
nothing calls this directly
no test coverage detected