(self)
| 1222 | ) |
| 1223 | |
| 1224 | def __dask_annotations__(self): |
| 1225 | annotations_by_type = {} |
| 1226 | for op in self.operands: |
| 1227 | for k, v in op.__dask_annotations__().items(): |
| 1228 | annotations_by_type.setdefault(k, {}).update(v) |
| 1229 | return annotations_by_type |
| 1230 | |
| 1231 | def __len__(self): |
| 1232 | return len(self.operands) |
nothing calls this directly
no test coverage detected