(self)
| 371 | |
| 372 | @functools.cached_property |
| 373 | def _meta(self): |
| 374 | meta = self.frame._meta |
| 375 | if self.ignore_index: |
| 376 | meta = meta.reset_index(drop=True) |
| 377 | return meta |
| 378 | |
| 379 | def _layer(self): |
| 380 | max_branch = (self.options or {}).get("max_branch", None) or 32 |
nothing calls this directly
no test coverage detected