Handle for the output of the Operator.
| 72 | |
| 73 | |
| 74 | class OutputHandle(InOut): |
| 75 | """Handle for the output of the Operator.""" |
| 76 | |
| 77 | value: tables.Table |
| 78 | |
| 79 | def __init__(self, operator: Operator, name, value: tables.Table): |
| 80 | super().__init__(operator, name) |
| 81 | self.value = value |
| 82 | |
| 83 | |
| 84 | class Operator(ABC): |
no outgoing calls
no test coverage detected