yangdx commited on
Commit
f0014ab
·
1 Parent(s): 289aced

Fix linting

Browse files
Files changed (1) hide show
  1. lightrag/api/config.py +1 -3
lightrag/api/config.py CHANGED
@@ -297,9 +297,7 @@ def parse_args() -> argparse.Namespace:
297
  args.enable_llm_cache_for_extract = get_env_value(
298
  "ENABLE_LLM_CACHE_FOR_EXTRACT", True, bool
299
  )
300
- args.enable_llm_cache = get_env_value(
301
- "ENABLE_LLM_CACHE", True, bool
302
- )
303
 
304
  # Inject LLM temperature configuration
305
  args.temperature = get_env_value("TEMPERATURE", 0.5, float)
 
297
  args.enable_llm_cache_for_extract = get_env_value(
298
  "ENABLE_LLM_CACHE_FOR_EXTRACT", True, bool
299
  )
300
+ args.enable_llm_cache = get_env_value("ENABLE_LLM_CACHE", True, bool)
 
 
301
 
302
  # Inject LLM temperature configuration
303
  args.temperature = get_env_value("TEMPERATURE", 0.5, float)