(self)
| 121 | |
| 122 | @functools.cached_property |
| 123 | def _token(self): |
| 124 | from dask.tokenize import _tokenize_deterministic |
| 125 | |
| 126 | return _tokenize_deterministic(self._data) |
| 127 | |
| 128 | def __len__(self): |
| 129 | return len(self._data) |
nothing calls this directly
no test coverage detected