(self)
| 2677 | return self |
| 2678 | |
| 2679 | def _lower(self): |
| 2680 | if not isinstance(self, BlockwiseTail): |
| 2681 | # Lower to Blockwise |
| 2682 | if is_index_like(self._meta): |
| 2683 | return BlockwiseTailIndex( |
| 2684 | Partitions(self.frame, [self.frame.npartitions - 1]), self.n |
| 2685 | ) |
| 2686 | return BlockwiseTail( |
| 2687 | Partitions(self.frame, [self.frame.npartitions - 1]), self.n |
| 2688 | ) |
| 2689 | |
| 2690 | |
| 2691 | class BlockwiseTail(Tail, Blockwise): |
nothing calls this directly
no test coverage detected