From 9c6831c360447370d7c720d8160ca34072f7189e Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Fri, 25 Oct 2024 09:47:53 -0700 Subject: [PATCH] style: format argparse argument for better readability --- aider/watch.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/aider/watch.py b/aider/watch.py index c1b0745d8..c1fa8c72c 100644 --- a/aider/watch.py +++ b/aider/watch.py @@ -95,7 +95,11 @@ def main(): parser = argparse.ArgumentParser(description="Watch source files for changes") parser.add_argument("directory", help="Directory to watch") - parser.add_argument("--gitignore", action='append', help="Path to .gitignore file (can be specified multiple times)") + parser.add_argument( + "--gitignore", + action="append", + help="Path to .gitignore file (can be specified multiple times)", + ) args = parser.parse_args() directory = args.directory