MCPcopy Index your code
hub / github.com/agent0ai/agent-zero / remove

Function remove

helpers/cache.py:60–65  ·  view source on GitHub ↗
(area: str, key: Any)

Source from the content-addressed store, hash-verified

58
59
60def remove(area: str, key: Any) -> None:
61 if not _is_enabled(area):
62 return
63 with _lock:
64 if area in _cache:
65 _cache[area].pop(key, None)
66
67
68def clear(area: str) -> None:

Callers

nothing calls this directly

Calls 2

_is_enabledFunction · 0.85
popMethod · 0.80

Tested by

no test coverage detected