From 19a2c37678bb2d103ab1a41930f49aad14b49668 Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Thu, 6 Feb 2025 11:37:52 -0800 Subject: [PATCH] style: Apply linting to models.py file --- aider/models.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aider/models.py b/aider/models.py index 7d587527f..227204fa7 100644 --- a/aider/models.py +++ b/aider/models.py @@ -601,8 +601,8 @@ class Model(ModelSettings): # dump(kwargs) hash_object = hashlib.sha1(key) - if 'timeout' not in kwargs: - kwargs['timeout'] = request_timeout + if "timeout" not in kwargs: + kwargs["timeout"] = request_timeout res = litellm.completion(**kwargs) return hash_object, res