The keys for this expression This is used to determine the keys of the output collection when this expression is computed. Returns ------- keys: list The keys for this expression
(self)
| 143 | return self._determ_token |
| 144 | |
| 145 | def __dask_keys__(self): |
| 146 | """The keys for this expression |
| 147 | |
| 148 | This is used to determine the keys of the output collection |
| 149 | when this expression is computed. |
| 150 | |
| 151 | Returns |
| 152 | ------- |
| 153 | keys: list |
| 154 | The keys for this expression |
| 155 | """ |
| 156 | return [(self._name, i) for i in range(self.npartitions)] |
| 157 | |
| 158 | @staticmethod |
| 159 | def _reconstruct(*args): |
no outgoing calls
no test coverage detected