mirror of
https://github.com/qodo-ai/pr-agent.git
synced 2025-12-12 02:45:18 +00:00
get_pr_url
This commit is contained in:
parent
e4f177908b
commit
f8e1bd3d4c
1 changed files with 5 additions and 0 deletions
|
|
@ -168,6 +168,11 @@ class GitProvider(ABC):
|
|||
def get_commit_messages(self):
|
||||
pass
|
||||
|
||||
def get_pr_url(self) -> str:
|
||||
if hasattr(self, 'pr_url'):
|
||||
return self.pr_url
|
||||
return ""
|
||||
|
||||
def get_latest_commit_url(self) -> str:
|
||||
return ""
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue