(self)
| 1103 | return self._operands_for_repr() |
| 1104 | |
| 1105 | def finalize_compute(self): |
| 1106 | return _HLGExprSequence(*[op.finalize_compute() for op in self.operands]) |
| 1107 | |
| 1108 | def _tune_down(self): |
| 1109 | if len(self.operands) == 1: |
nothing calls this directly
no test coverage detected