| 89 | |
| 90 | |
| 91 | class SourceManager: |
| 92 | def __init__(self, location: Path | None = None) -> None: |
| 93 | self.location: Path = location or tc_build.utils.UNINIT_PATH |
| 94 | self.tarball = Tarball() |
| 95 | |
| 96 | |
| 97 | class GitSourceManager: |
nothing calls this directly
no outgoing calls
no test coverage detected