(self)
| 902 | ) |
| 903 | |
| 904 | def __dask_tokenize__(self): |
| 905 | from dask.tokenize import tokenize |
| 906 | |
| 907 | return ( |
| 908 | type(self).__name__, |
| 909 | self.klass, |
| 910 | sorted(tokenize(a) for a in self.args), |
| 911 | ) |
| 912 | |
| 913 | return super().__dask_tokenize__() |
| 914 | |
| 915 | @staticmethod |
| 916 | def to_container(*args, constructor): |
nothing calls this directly
no test coverage detected