mirror of
https://github.com/qodo-ai/pr-agent.git
synced 2025-12-12 19:05:18 +00:00
Update publish_inline_comments in bitbucket_provider.py to use 'position' instead of 'start_line'
This commit is contained in:
parent
26d6280a20
commit
e1370a8385
1 changed files with 1 additions and 1 deletions
|
|
@ -183,7 +183,7 @@ class BitbucketProvider(GitProvider):
|
||||||
|
|
||||||
def publish_inline_comments(self, comments: list[dict]):
|
def publish_inline_comments(self, comments: list[dict]):
|
||||||
for comment in comments:
|
for comment in comments:
|
||||||
self.publish_inline_comment(comment['body'], comment['start_line'], comment['path'])
|
self.publish_inline_comment(comment['body'], comment['position'], comment['path'])
|
||||||
|
|
||||||
def get_title(self):
|
def get_title(self):
|
||||||
return self.pr.title
|
return self.pr.title
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue