mirror of
https://github.com/qodo-ai/pr-agent.git
synced 2025-12-12 10:55:17 +00:00
fix: raising exception instead of empty string
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
This commit is contained in:
parent
d78a71184d
commit
26dc2e9d21
1 changed files with 2 additions and 2 deletions
|
|
@ -329,8 +329,8 @@ class BitbucketServerProvider(GitProvider):
|
||||||
return ""
|
return ""
|
||||||
|
|
||||||
def get_commit_messages(self):
|
def get_commit_messages(self):
|
||||||
return "" # not implemented yet
|
def get_commit_messages(self):
|
||||||
|
raise NotImplementedError("Get commit messages function not implemented yet.")
|
||||||
# bitbucket does not support labels
|
# bitbucket does not support labels
|
||||||
def publish_description(self, pr_title: str, description: str):
|
def publish_description(self, pr_title: str, description: str):
|
||||||
payload = json.dumps({
|
payload = json.dumps({
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue