From e9beb1336c2c59e4044c1248045d8efe067b77fd Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Wed, 30 Oct 2024 11:34:24 -0700 Subject: [PATCH] style: fix line length in model warnings confirmation prompt --- aider/main.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/aider/main.py b/aider/main.py index 751756f38..8fc0ab4cd 100644 --- a/aider/main.py +++ b/aider/main.py @@ -610,7 +610,9 @@ def main(argv=None, input=None, output=None, force_git_root=None, return_coder=F io.tool_output() try: - if io.confirm_ask("Open documentation url for more info?", subject=urls.model_warnings): + if io.confirm_ask( + "Open documentation url for more info?", subject=urls.model_warnings + ): webbrowser.open(urls.model_warnings) except KeyboardInterrupt: return 1