(self)
| 1212 | __str__ = __repr__ |
| 1213 | |
| 1214 | def finalize_compute(self): |
| 1215 | return _ExprSequence( |
| 1216 | *(op.finalize_compute() for op in self.operands), |
| 1217 | ) |
| 1218 | |
| 1219 | def __dask_annotations__(self): |
| 1220 | annotations_by_type = {} |
nothing calls this directly
no test coverage detected