From 51e7067c4573612bcc847cf03e07a6e2e393c1c8 Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Fri, 30 Aug 2024 08:12:06 -0700 Subject: [PATCH] style: add newline after import statement in report.py --- aider/report.py | 1 + 1 file changed, 1 insertion(+) diff --git a/aider/report.py b/aider/report.py index c1d5feceb..d330397f3 100644 --- a/aider/report.py +++ b/aider/report.py @@ -20,6 +20,7 @@ def report_github_issue(issue_text, title=None): :return: None """ import platform + version_info = f"Aider version: {__version__}\n" platform_info = f"Platform: {platform.platform()}\n\n" issue_text = version_info + platform_info + issue_text