fix cache set

This commit is contained in:
rdavis 2026-02-20 12:44:23 -06:00
parent 0492ae2eaf
commit 2ed81785ba
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@ def _scan_cache_get(key: Tuple[str, bool]) -> Optional[Tuple[List[Dict], List[st
return value
def _scan_cache_set(key: Tuple[str, str, bool], value: Tuple[List[Dict], List[str]]) -> None:
def _scan_cache_set(key: Tuple[str, bool], value: Tuple[List[Dict], List[str]]) -> None:
with _SCAN_WALK_CACHE_LOCK:
_SCAN_WALK_CACHE[key] = (time.monotonic(), value)