From a5761348612447e265bc9888f869cfa167cb5fc4 Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Fri, 30 Aug 2024 08:18:09 -0700 Subject: [PATCH] style: format code with linter --- aider/report.py | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/aider/report.py b/aider/report.py index c09572476..8ecbbd158 100644 --- a/aider/report.py +++ b/aider/report.py @@ -33,7 +33,6 @@ def get_git_info(): return "Git information unavailable" - def report_github_issue(issue_text, title=None): """ Compose a URL to open a new GitHub issue with the given text prefilled, @@ -51,13 +50,7 @@ def report_github_issue(issue_text, title=None): git_info = get_git_info() + "\n" system_info = ( - version_info - + python_version - + platform_info - + python_info - + os_info - + git_info - + "\n" + version_info + python_version + platform_info + python_info + os_info + git_info + "\n" ) issue_text = system_info + issue_text