(self)
| 107 | """ |
| 108 | |
| 109 | def __init__(self): |
| 110 | self._cache: dict[str, CacheEntry] = {} |
| 111 | self._cache_lock = threading.Lock() |
| 112 | self._compute_locks: dict[str, threading.Lock] = {} |
| 113 | self._compute_locks_lock = threading.Lock() |
| 114 | |
| 115 | def get(self, key: str, timeout_seconds: int | None = None) -> Any | None: |
| 116 | """Get cached value if it exists and hasn't expired""" |
nothing calls this directly
no outgoing calls
no test coverage detected