From c5d502541944671ca58847be6c99ebee66c6a5f2 Mon Sep 17 00:00:00 2001 From: gsw945 Date: Tue, 9 Sep 2025 19:52:14 +0800 Subject: [PATCH] fix make lint error --- graphiti_core/llm_client/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/graphiti_core/llm_client/client.py b/graphiti_core/llm_client/client.py index 9f7558c1..6d140b0a 100644 --- a/graphiti_core/llm_client/client.py +++ b/graphiti_core/llm_client/client.py @@ -153,7 +153,7 @@ class LLMClient(ABC): cached_response = self.cache_dir.get(cache_key) if cached_response is not None: logger.debug(f'Cache hit for {cache_key}') - return cached_response + return cached_response # type: ignore for message in messages: message.content = self._clean_input(message.content)