(cmd)
| 233 | |
| 234 | |
| 235 | def _check_executable(cmd): |
| 236 | if subprocess.call(f'which {cmd}', shell=True) != 0: |
| 237 | return False |
| 238 | else: |
| 239 | return True |
| 240 | |
| 241 | |
| 242 | def requires_package(prerequisites): |
nothing calls this directly
no outgoing calls
no test coverage detected