(self, *inputs)
| 2086 | self.Proto().external_output.extend([str(output)]) |
| 2087 | |
| 2088 | def AddScopedExternalInputs(self, *inputs): |
| 2089 | res = self.AddExternalInput( |
| 2090 | * [ScopedBlobReference(b) for b in inputs] |
| 2091 | ) |
| 2092 | if not isinstance(res, list): |
| 2093 | res = [res] |
| 2094 | return res |
| 2095 | |
| 2096 | def AddScopedExternalOutputs(self, *outputs): |
| 2097 | return self.AddExternalOutput( |