From 663632e2d9f0966b60b9127214d123f8aed1f2c2 Mon Sep 17 00:00:00 2001 From: mrT23 Date: Sun, 24 Dec 2023 10:27:48 +0200 Subject: [PATCH] fixed bug --- pr_agent/git_providers/gitlab_provider.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pr_agent/git_providers/gitlab_provider.py b/pr_agent/git_providers/gitlab_provider.py index 994ba156..2b7c1a93 100644 --- a/pr_agent/git_providers/gitlab_provider.py +++ b/pr_agent/git_providers/gitlab_provider.py @@ -183,7 +183,7 @@ class GitLabProvider(GitProvider): self.send_inline_comment(body, edit_type, found, relevant_file, relevant_line_in_file, source_line_no, target_file, target_line_no) - def create_inline_comment(self, body: str, relevant_file: str, relevant_line_in_file: str, position: int = None): + def create_inline_comment(self, body: str, relevant_file: str, relevant_line_in_file: str, absolute_position: int = None): raise NotImplementedError("Gitlab provider does not support creating inline comments yet") def create_inline_comments(self, comments: list[dict]):