(self, *outputs)
| 2079 | return refs[0] if len(refs) == 1 else refs |
| 2080 | |
| 2081 | def AddExternalOutput(self, *outputs): |
| 2082 | for output in outputs: |
| 2083 | assert isinstance(output, BlobReference) |
| 2084 | assert self.BlobIsDefined(output), "{} is not defined".format(output) |
| 2085 | for output in outputs: |
| 2086 | self.Proto().external_output.extend([str(output)]) |
| 2087 | |
| 2088 | def AddScopedExternalInputs(self, *inputs): |
| 2089 | res = self.AddExternalInput( |