style: Apply linting to models.py file

This commit is contained in:
Paul Gauthier (aider) 2025-02-06 11:37:52 -08:00
parent 23d74040ed
commit 19a2c37678

View file

@ -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