(self, inputs: ArgTuple)
| 141 | return self._outputs[name].value |
| 142 | |
| 143 | def _prepare_inputs(self, inputs: ArgTuple): |
| 144 | valid_inputs = [ |
| 145 | (name, value) |
| 146 | for name, value in inputs.items() |
| 147 | if isinstance(value, OperatorInput) |
| 148 | ] |
| 149 | for name, value in valid_inputs: |
| 150 | input = InputHandle(self, name, value) |
| 151 | self._inputs[name] = input |
| 152 | |
| 153 | def _prepare_outputs(self, outputs: ArgTuple): |
| 154 | for name, value in outputs.items(): |