Return *None* to indicate a cache miss.
(self, key: str)
| 48 | |
| 49 | @abstractmethod |
| 50 | def get(self, key: str) -> Any | None: # noqa: ANN401 – value type arbitrary |
| 51 | """Return *None* to indicate a cache miss.""" |
| 52 | |
| 53 | @abstractmethod |
| 54 | def set( |
no outgoing calls
no test coverage detected