mirror of
https://github.com/BerriAI/litellm.git
synced 2025-04-26 11:14:04 +00:00
fix linting - remove # noqa PLR0915 from fixed function
This commit is contained in:
parent
1bf596f0f0
commit
29ec964597
1 changed files with 1 additions and 1 deletions
|
@ -233,7 +233,7 @@ class Cache:
|
|||
if self.namespace is not None and isinstance(self.cache, RedisCache):
|
||||
self.cache.namespace = self.namespace
|
||||
|
||||
def get_cache_key(self, *args, **kwargs) -> str: # noqa: PLR0915
|
||||
def get_cache_key(self, *args, **kwargs) -> str:
|
||||
"""
|
||||
Get the cache key for the given arguments.
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue