(self)
| 1217 | ) |
| 1218 | |
| 1219 | def __dask_annotations__(self): |
| 1220 | annotations_by_type = {} |
| 1221 | for op in self.operands: |
| 1222 | for k, v in op.__dask_annotations__().items(): |
| 1223 | annotations_by_type.setdefault(k, {}).update(v) |
| 1224 | return annotations_by_type |
| 1225 | |
| 1226 | def __len__(self): |
| 1227 | return len(self.operands) |
nothing calls this directly
no test coverage detected