(self, parent, dependents)
| 638 | return Task(name, self.operation, *args) # type: ignore[arg-type] |
| 639 | |
| 640 | def _simplify_up(self, parent, dependents): |
| 641 | if self._projection_passthrough and isinstance(parent, Projection): |
| 642 | return plain_column_projection(self, parent, dependents) |
| 643 | |
| 644 | @functools.cached_property |
| 645 | def unique_partition_mapping_columns_from_shuffle(self): |
nothing calls this directly
no test coverage detected