From b03d5d10990e791b4b552fcb1d27228b5537fe3f Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Mon, 23 Sep 2024 09:02:49 -0700 Subject: [PATCH] style: Wrap long help text in args.py --- aider/args.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/aider/args.py b/aider/args.py index 1533db479..e1661c282 100644 --- a/aider/args.py +++ b/aider/args.py @@ -206,7 +206,10 @@ def get_parser(default_config_files, git_root): "--map-refresh", choices=["auto", "always", "files", "manual"], default="auto", - help="Control how often the repo map is refreshed. Options: auto, always, files, manual (default: auto)", + help=( + "Control how often the repo map is refreshed. Options: auto, always, files, manual" + " (default: auto)" + ), ) group.add_argument( "--cache-prompts",