(self)
| 887 | ) |
| 888 | |
| 889 | def __dask_tokenize__(self): |
| 890 | from dask.tokenize import tokenize |
| 891 | |
| 892 | return ( |
| 893 | type(self).__name__, |
| 894 | self.klass, |
| 895 | sorted(tokenize(a) for a in self.args), |
| 896 | ) |
| 897 | |
| 898 | return super().__dask_tokenize__() |
| 899 | |
| 900 | @staticmethod |
| 901 | def to_container(*args, constructor): |
nothing calls this directly
no test coverage detected