mirror of
https://github.com/Aider-AI/aider.git
synced 2025-06-01 10:14:59 +00:00
style: format argparse argument for better readability
This commit is contained in:
parent
64ec0708c4
commit
9c6831c360
1 changed files with 5 additions and 1 deletions
|
@ -95,7 +95,11 @@ def main():
|
||||||
|
|
||||||
parser = argparse.ArgumentParser(description="Watch source files for changes")
|
parser = argparse.ArgumentParser(description="Watch source files for changes")
|
||||||
parser.add_argument("directory", help="Directory to watch")
|
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()
|
args = parser.parse_args()
|
||||||
|
|
||||||
directory = args.directory
|
directory = args.directory
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue