(self, outputs)
| 572 | return output |
| 573 | |
| 574 | def add_outputs(self, outputs): |
| 575 | self._assert_not_used() |
| 576 | if type(outputs) not in (list, tuple): |
| 577 | return self.add_output(outputs) |
| 578 | else: |
| 579 | return [self.add_output(output) for output in outputs] |
| 580 | |
| 581 | def set_step(self, step): |
| 582 | self._assert_not_used() |
no test coverage detected