| 514 | |
| 515 | |
| 516 | class FinalizeComputeDF(FinalizeCompute, Expr): |
| 517 | _parameters = ["frame"] |
| 518 | |
| 519 | def _simplify_down(self): |
| 520 | from dask.dataframe.dask_expr._repartition import Repartition |
| 521 | |
| 522 | return Repartition(self.frame, 1) |
| 523 | |
| 524 | |
| 525 | class Literal(Expr): |