From 08220f598cc7d565f3f2693946d38ac5df48d13e Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Thu, 8 May 2025 07:49:55 -0700 Subject: [PATCH] style: Format long line in fetch_openrouter_model_info docstring --- aider/models.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/aider/models.py b/aider/models.py index 1cb64d0bb..166cb3974 100644 --- a/aider/models.py +++ b/aider/models.py @@ -243,7 +243,8 @@ class ModelInfoManager: Fetch model info by scraping the openrouter model page. Expected URL: https://openrouter.ai/ Example: openrouter/qwen/qwen-2.5-72b-instruct:free - Returns a dict with keys: max_tokens, max_input_tokens, max_output_tokens, input_cost_per_token, output_cost_per_token. + Returns a dict with keys: max_tokens, max_input_tokens, max_output_tokens, + input_cost_per_token, output_cost_per_token. """ url_part = model[len("openrouter/") :] url = "https://openrouter.ai/" + url_part