(model, ids)
| 1133 | |
| 1134 | |
| 1135 | def batch_run(model, ids): |
| 1136 | model = RemoteModel(model) |
| 1137 | batch_ids = [] |
| 1138 | for i in ids: |
| 1139 | response = model.batch_run(i) |
| 1140 | batch_ids.append(response.id) |
| 1141 | print(batch_ids) |
| 1142 | |
| 1143 | def batch_status(model, ids): |
| 1144 | model = RemoteModel(model) |
nothing calls this directly
no test coverage detected