style: fix line length in model warnings confirmation prompt

This commit is contained in:
Paul Gauthier (aider) 2024-10-30 11:34:24 -07:00
parent 4ac8386313
commit e9beb1336c

View file

@ -610,7 +610,9 @@ def main(argv=None, input=None, output=None, force_git_root=None, return_coder=F
io.tool_output() io.tool_output()
try: 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) webbrowser.open(urls.model_warnings)
except KeyboardInterrupt: except KeyboardInterrupt:
return 1 return 1