fix linting - remove # noqa PLR0915 from fixed function

This commit is contained in:
Ishaan Jaff 2024-10-23 23:36:39 +05:30
parent 182adec7d0
commit bcce21a5b0

View file

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