(self)
| 47 | |
| 48 | @functools.cached_property |
| 49 | def _constructor(self): |
| 50 | meta = self.frame._meta |
| 51 | if not is_series_like(self.frame._meta): |
| 52 | meta = meta.to_series() |
| 53 | return meta._constructor |
| 54 | |
| 55 | @functools.cached_property |
| 56 | def _finalizer(self): |
no test coverage detected