From 88ee089d86c3975961c0025549ae90f63bc86f26 Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Tue, 4 Feb 2025 07:59:32 -0800 Subject: [PATCH] style: Apply linter formatting to main.py --- aider/main.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/aider/main.py b/aider/main.py index 5f876ce1f..374fcb9a8 100644 --- a/aider/main.py +++ b/aider/main.py @@ -159,7 +159,7 @@ def check_gitignore(git_root, io, ask=True): try: repo = git.Repo(git_root) patterns_to_add = [] - + if not repo.ignored(".aider"): patterns_to_add.append(".aider*") if not repo.ignored(".env"): @@ -196,7 +196,8 @@ def check_gitignore(git_root, io, ask=True): except OSError as e: io.tool_error(f"Error when trying to write to {gitignore_file}: {e}") io.tool_output( - "Try running with appropriate permissions or manually add these patterns to .gitignore:" + "Try running with appropriate permissions or manually add these patterns to" + " .gitignore:" ) for pattern in patterns_to_add: io.tool_output(f" {pattern}")