(self)
| 131 | return ExprTuple(*(ExprScalar(expr) for expr in exprs)) |
| 132 | |
| 133 | def __dask_graph__(self): |
| 134 | return merge(*(child.__dask_graph__() for child in self.children)) |
| 135 | |
| 136 | def __dask_keys__(self): |
| 137 | return [child.__dask_keys__() for child in self.children] |
nothing calls this directly
no test coverage detected