style: format code with linter

This commit is contained in:
Paul Gauthier (aider) 2024-08-30 08:18:09 -07:00
parent 9b7976a07e
commit a576134861

View file

@ -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