From 68a4f5848029f97170bb7114bf82d52b5a808c91 Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Thu, 29 Aug 2024 09:12:37 -0700 Subject: [PATCH] style: format imports and string quotes --- aider/report.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aider/report.py b/aider/report.py index f7543c8c6..356da81e8 100644 --- a/aider/report.py +++ b/aider/report.py @@ -1,7 +1,7 @@ import sys +import traceback import urllib.parse import webbrowser -import traceback from aider import __version__ @@ -52,7 +52,7 @@ def report_github_issue(issue_text, title=None): def exception_handler(exc_type, exc_value, exc_traceback): # Format the traceback tb_lines = traceback.format_exception(exc_type, exc_value, exc_traceback) - tb_text = ''.join(tb_lines) + tb_text = "".join(tb_lines) # Prepare the issue text issue_text = f"An uncaught exception occurred:\n\n```\n{tb_text}\n```"