Remove non implemented method _prepare_clone_url_with_token from providers which don't support it and instead, issue a warning in base class.

This commit is contained in:
Eyal Sharon
2025-03-24 14:06:06 +02:00
parent a4387b5829
commit fb324d106c
5 changed files with 3 additions and 14 deletions

View File

@ -190,6 +190,3 @@ class LocalGitProvider(GitProvider):
def get_pr_labels(self, update=False):
raise NotImplementedError('Getting labels is not implemented for the local git provider')
def _prepare_clone_url_with_token(self, repo_url_to_clone: str) -> str | None:
raise Exception("Not implemented!")