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