(process_handles: list[subprocess.Popen])
| 179 | |
| 180 | |
| 181 | def terminate_process_handles(process_handles: list[subprocess.Popen]): |
| 182 | for handle in process_handles: |
| 183 | handle.terminate() |
| 184 | handle.wait() |
| 185 | |
| 186 | |
| 187 | def checkout_repository( |
no outgoing calls