publish_persistent_comment

This commit is contained in:
mrT23
2023-11-09 15:20:31 +02:00
parent 755e04cf65
commit 7e5889061c
5 changed files with 27 additions and 11 deletions

View File

@ -44,7 +44,7 @@ class GitProvider(ABC):
def publish_comment(self, pr_comment: str, is_temporary: bool = False):
pass
def publish_persistent_review(self, pr_comment: str):
def publish_persistent_comment(self, pr_comment: str):
self.publish_comment(pr_comment)
@abstractmethod