forked from phoenix/litellm-mirror
fix linting - remove # noqa PLR0915 from fixed function
This commit is contained in:
parent
182adec7d0
commit
bcce21a5b0
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):
|
if self.namespace is not None and isinstance(self.cache, RedisCache):
|
||||||
self.cache.namespace = self.namespace
|
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.
|
Get the cache key for the given arguments.
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue