From e94f7dbe1b88c7561c0bb37de332b8c208e4b5e4 Mon Sep 17 00:00:00 2001 From: yangdx Date: Wed, 9 Apr 2025 12:42:48 +0800 Subject: [PATCH] Fix linting --- lightrag/api/config.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/lightrag/api/config.py b/lightrag/api/config.py index 7b4c9bd3..268b41cb 100644 --- a/lightrag/api/config.py +++ b/lightrag/api/config.py @@ -297,9 +297,7 @@ def parse_args() -> argparse.Namespace: args.enable_llm_cache_for_extract = get_env_value( "ENABLE_LLM_CACHE_FOR_EXTRACT", True, bool ) - args.enable_llm_cache = get_env_value( - "ENABLE_LLM_CACHE", True, bool - ) + args.enable_llm_cache = get_env_value("ENABLE_LLM_CACHE", True, bool) # Inject LLM temperature configuration args.temperature = get_env_value("TEMPERATURE", 0.5, float)