(model, ids)
| 1108 | print(ids) |
| 1109 | |
| 1110 | def delete_file(model, ids): |
| 1111 | model = RemoteModel(model) |
| 1112 | for i in ids: |
| 1113 | model.delete_file(i) |
| 1114 | |
| 1115 | def download_file(model, ids): |
| 1116 | model = RemoteModel(model) |
nothing calls this directly
no test coverage detected