(self, batch_id)
| 92 | return response |
| 93 | |
| 94 | def batch_status(self, batch_id): |
| 95 | response = self.client.batches.retrieve(batch_id) |
| 96 | print(response) |
| 97 | return response |
| 98 | |
| 99 | def cancel_batch(self, batch_id): |
| 100 | response = self.client.batches.cancel(batch_id) |
no outgoing calls
no test coverage detected