(self)
| 896 | ) |
| 897 | |
| 898 | def __dask_tokenize__(self): |
| 899 | from dask.tokenize import tokenize |
| 900 | |
| 901 | return ( |
| 902 | type(self).__name__, |
| 903 | self.klass, |
| 904 | sorted(tokenize(a) for a in self.args), |
| 905 | ) |
| 906 | |
| 907 | return super().__dask_tokenize__() |
| 908 | |
| 909 | @staticmethod |
| 910 | def to_container(*args, constructor): |
nothing calls this directly
no test coverage detected