(self)
| 2996 | return [self.frame] |
| 2997 | |
| 2998 | def _divisions(self): |
| 2999 | if is_index_like(self._meta): |
| 3000 | return (None,) * (self.frame.npartitions + 1) |
| 3001 | else: |
| 3002 | return super()._divisions() |
| 3003 | |
| 3004 | |
| 3005 | class Invert(Unaryop): |
nothing calls this directly
no test coverage detected