diff --git a/pr_agent/git_providers/git_provider.py b/pr_agent/git_providers/git_provider.py index e5afe42b..0228955e 100644 --- a/pr_agent/git_providers/git_provider.py +++ b/pr_agent/git_providers/git_provider.py @@ -45,7 +45,6 @@ class GitProvider(ABC): if self.path and os.path.exists(self.path): shutil.rmtree(self.path, ignore_errors=True) - @abstractmethod #Method to allow implementors to manipulate the repo url to clone (such as embedding tokens in the url string). Needs to be implemented by the provider. def _prepare_clone_url_with_token(self, repo_url_to_clone: str) -> str | None: get_logger().warning("Not implemented! Returning None")