(mypy_path: str, temp_repo_path: str, mypy_cache_path: str)
| 84 | |
| 85 | |
| 86 | def ensure_environment_is_ready(mypy_path: str, temp_repo_path: str, mypy_cache_path: str) -> None: |
| 87 | os.chdir(mypy_path) |
| 88 | delete_folder(temp_repo_path) |
| 89 | delete_folder(mypy_cache_path) |
| 90 | |
| 91 | |
| 92 | def initialize_repo(repo_url: str, temp_repo_path: str, branch: str) -> None: |
searching dependent graphs…