| 1314 | return f"finalize-{super()._name}" |
| 1315 | |
| 1316 | def __dask_graph__(self): |
| 1317 | # The baseclass __dask_graph__ will not just materialize this layer but |
| 1318 | # also that of its dependencies, i.e. it will render the finalized and |
| 1319 | # the non-finalized graph and combine them. We only want the finalized |
| 1320 | # so we're overriding this. |
| 1321 | # This is an artifact generated since the wrapped expression is |
| 1322 | # identified automatically as a dependency but HLG expressions are not |
| 1323 | # working in this layered way. |
| 1324 | return self._layer() |
| 1325 | |
| 1326 | @property |
| 1327 | def hlg(self): |