(model, ids)
| 1141 | print(batch_ids) |
| 1142 | |
| 1143 | def batch_status(model, ids): |
| 1144 | model = RemoteModel(model) |
| 1145 | for i in ids: |
| 1146 | model.batch_status(i) |
| 1147 | |
| 1148 | def cancel_batch(model, ids): |
| 1149 | model = RemoteModel(model) |
nothing calls this directly
no test coverage detected