Added GitPython to requirements. Changed default review path (aesthetics)

This commit is contained in:
Patryk Kowalski
2023-07-24 14:28:37 +02:00
parent 02ecaa340f
commit 8e6518f071
2 changed files with 2 additions and 1 deletions

View File

@ -41,7 +41,7 @@ class LocalGitProvider(GitProvider):
self.description_path = settings.get('local.description_path') \
if settings.get('local.description_path') is not None else self.repo_path / 'description.md'
self.review_path = settings.get('local.review_path') \
if settings.get('local.review_path') is not None else self.repo_path / 'review_path.md'
if settings.get('local.review_path') is not None else self.repo_path / 'review.md'
# inline code comments are not supported for local git repositories
settings.pr_reviewer.inline_code_comments = False