From 29108d99628f1aad38fb6c309b987384fe965b52 Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Fri, 30 Aug 2024 07:56:15 -0700 Subject: [PATCH] style: format long line in sanity_check_repo function --- aider/main.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/aider/main.py b/aider/main.py index 7972a9a3d..294da569e 100644 --- a/aider/main.py +++ b/aider/main.py @@ -306,7 +306,9 @@ def sanity_check_repo(repo, io): if "version in (1, 2)" in error_msg: io.tool_error("Aider only works with git repos with version number 1 or 2.") - io.tool_error("You may be able to convert your repo: git update-index --index-version=2") + io.tool_error( + "You may be able to convert your repo: git update-index --index-version=2" + ) io.tool_error("Or run aider --no-git to proceed without using git.") io.tool_error("https://github.com/paul-gauthier/aider/issues/211") return False