style: format benchmark.py with black

This commit is contained in:
Paul Gauthier (aider) 2024-12-11 13:09:52 -08:00
parent a9401e921e
commit fcb2bacd1e

View file

@ -158,7 +158,9 @@ def main(
dirnames: Optional[List[str]] = typer.Argument(None, help="Directory names"), dirnames: Optional[List[str]] = typer.Argument(None, help="Directory names"),
graphs: bool = typer.Option(False, "--graphs", help="Generate graphs"), graphs: bool = typer.Option(False, "--graphs", help="Generate graphs"),
model: str = typer.Option("gpt-3.5-turbo", "--model", "-m", help="Model name"), model: str = typer.Option("gpt-3.5-turbo", "--model", "-m", help="Model name"),
sleep: float = typer.Option(0, "--sleep", help="Sleep seconds between tests when single threaded"), sleep: float = typer.Option(
0, "--sleep", help="Sleep seconds between tests when single threaded"
),
edit_format: str = typer.Option(None, "--edit-format", "-e", help="Edit format"), edit_format: str = typer.Option(None, "--edit-format", "-e", help="Edit format"),
editor_model: str = typer.Option(None, "--editor-model", help="Editor model name"), editor_model: str = typer.Option(None, "--editor-model", help="Editor model name"),
editor_edit_format: str = typer.Option(None, "--editor-edit-format", help="Editor edit format"), editor_edit_format: str = typer.Option(None, "--editor-edit-format", help="Editor edit format"),