(self)
| 166 | |
| 167 | @functools.cached_property |
| 168 | def _meta(self): |
| 169 | meta = self.frame._meta |
| 170 | if self.ignore_index and self.method == "tasks": |
| 171 | meta = meta.reset_index(drop=True) |
| 172 | return meta |
| 173 | |
| 174 | def _divisions(self): |
| 175 | return (None,) * (self.npartitions_out + 1) |
nothing calls this directly
no test coverage detected