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