(externals_dir, zip_path)
| 105 | |
| 106 | |
| 107 | def extract_zip(externals_dir, zip_path): |
| 108 | with zipfile.ZipFile(os.fspath(zip_path)) as zf: |
| 109 | zf.extractall(os.fspath(externals_dir)) |
| 110 | return externals_dir / zf.namelist()[0].split('/')[0] |
| 111 | |
| 112 | |
| 113 | def parse_args(): |
no test coverage detected
searching dependent graphs…