(area: str, key: Any)
| 58 | |
| 59 | |
| 60 | def 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 | |
| 68 | def clear(area: str) -> None: |
nothing calls this directly
no test coverage detected