(self)
| 1805 | |
| 1806 | @functools.cached_property |
| 1807 | def random_state_data(self): |
| 1808 | return random_state_data(self.frame.npartitions, self.random_state) |
| 1809 | |
| 1810 | def _task(self, name: Key, index: int) -> Task: |
| 1811 | args = [self._blockwise_arg(op, index) for op in self._args] |
nothing calls this directly
no test coverage detected