()
| 165 | |
| 166 | |
| 167 | def _test(): |
| 168 | batch_code = [ |
| 169 | """ |
| 170 | print("Hello world!") |
| 171 | """ |
| 172 | ] |
| 173 | |
| 174 | executor = PythonExecutor(get_answer_from_stdout=True) |
| 175 | predictions = executor.apply(batch_code[0]) |
| 176 | print(predictions) |
| 177 | |
| 178 | |
| 179 | if __name__ == '__main__': |
no test coverage detected