(self, git_token: str, url: str)
| 60 | # URL / token helpers |
| 61 | # ------------------------------------------------------------------ |
| 62 | def _add_git_token(self, git_token: str, url: str) -> str: |
| 63 | return _GitCommand._inject_token(url, git_token) |
| 64 | |
| 65 | def remove_token_from_url(self, url: str) -> str: |
| 66 | return _GitCommand.strip_token_from_url(url) |
no outgoing calls
no test coverage detected