()
| 8140 | this.check_single_output(); |
| 8141 | } |
| 8142 | check_single_output() { |
| 8143 | if (this.graph().outputs().length !== 1) { |
| 8144 | throw new python.Error('Graph must have a single output.'); |
| 8145 | } |
| 8146 | } |
| 8147 | getSchema() { |
| 8148 | this._schema = this._schema || this.defaultSchemaFor(this); |
| 8149 | return this._schema; |
no test coverage detected