(self, repo: Path)
| 96 | |
| 97 | class GitSourceManager: |
| 98 | def __init__(self, repo: Path) -> None: |
| 99 | self.repo: Path = repo |
| 100 | |
| 101 | # Will be set by derived classes but used here |
| 102 | self._pretty_name: str = '' |
| 103 | self._repo_url: str = '' |
| 104 | |
| 105 | def download(self, ref: str, shallow: bool = False) -> None: |
| 106 | if self.repo.exists(): |
nothing calls this directly
no outgoing calls
no test coverage detected