From a3d78e0944742a6e27cff4b4aaf82712bb90ca20 Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Wed, 30 Oct 2024 13:21:21 -0700 Subject: [PATCH] style: split long URL string constant into multiple lines --- aider/models.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/aider/models.py b/aider/models.py index 080a15011..20d977983 100644 --- a/aider/models.py +++ b/aider/models.py @@ -633,7 +633,10 @@ MODEL_SETTINGS = [ class ModelInfoManager: - MODEL_INFO_URL = "https://raw.githubusercontent.com/BerriAI/litellm/main/model_prices_and_context_window.json" + MODEL_INFO_URL = ( + "https://raw.githubusercontent.com/BerriAI/litellm/main/" + "model_prices_and_context_window.json" + ) CACHE_TTL = 60 * 60 * 24 # 24 hours content = None