(self, output_stream)
| 257 | return " ".join(output_text) |
| 258 | |
| 259 | def return_output(self, output_stream): |
| 260 | pre = 0 |
| 261 | for outputs in output_stream: |
| 262 | output_text = outputs["text"] |
| 263 | output_text = output_text.strip().split(" ") |
| 264 | now = len(output_text) - 1 |
| 265 | if now > pre: |
| 266 | pre = now |
| 267 | return " ".join(output_text) |
nothing calls this directly
no outgoing calls
no test coverage detected