From c2e3bf7b70edea71c32181092d9019815048ef17 Mon Sep 17 00:00:00 2001 From: mrT23 Date: Thu, 6 Jul 2023 16:39:56 +0300 Subject: [PATCH] newline --- pr_agent/tools/pr_questions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pr_agent/tools/pr_questions.py b/pr_agent/tools/pr_questions.py index 7a6f791a..51cef14f 100644 --- a/pr_agent/tools/pr_questions.py +++ b/pr_agent/tools/pr_questions.py @@ -65,7 +65,7 @@ class PRQuestions: def _prepare_pr_answer(self) -> str: answer_str = f"Question: {self.question_str}\n\n" - answer_str += f"Answer: {self.prediction.strip()}\n\n" + answer_str += f"Answer:\n{self.prediction.strip()}\n\n" if settings.config.verbosity_level >= 2: logging.info(f"answer_str:\n{answer_str}") return answer_str