(self, *args, **kwargs)
| 844 | return HighLevelGraph.from_collections(self._key, dsk, dependencies=()) |
| 845 | |
| 846 | def __call__(self, *args, **kwargs): |
| 847 | return call_function( |
| 848 | self._obj, self._key, args, kwargs, pure=self._pure, nout=self._nout |
| 849 | ) |
| 850 | |
| 851 | @property |
| 852 | def __name__(self): |
nothing calls this directly
no test coverage detected