From 7598f883f5a9031d27b37bee765608b87a529b13 Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Wed, 4 Sep 2024 10:09:13 -0700 Subject: [PATCH] style: format long line in report command for better readability --- aider/commands.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/aider/commands.py b/aider/commands.py index 309a6ed7e..f96c6d090 100644 --- a/aider/commands.py +++ b/aider/commands.py @@ -1140,7 +1140,9 @@ class Commands: from aider.report import report_github_issue announcements = "\n".join(self.coder.get_announcements()) - issue_text = f"{'User report:\n\n' if args.strip() else ''}{args}\n\nAnnouncements:\n{announcements}" + issue_text = ( + f"{'User report:\n\n' if args.strip() else ''}{args}\n\nAnnouncements:\n{announcements}" + ) report_github_issue(issue_text, confirm=False)