From bcce21a5b0568ee76be52de3775c8ae5d9ac60a4 Mon Sep 17 00:00:00 2001 From: Ishaan Jaff Date: Wed, 23 Oct 2024 23:36:39 +0530 Subject: [PATCH] fix linting - remove # noqa PLR0915 from fixed function --- litellm/caching/caching.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/litellm/caching/caching.py b/litellm/caching/caching.py index 85fbe3234..f845633cb 100644 --- a/litellm/caching/caching.py +++ b/litellm/caching/caching.py @@ -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.