Delete a key from the cache.
(key: str)
| 152 | |
| 153 | |
| 154 | def delete(key: str) -> None: |
| 155 | """Delete a key from the cache.""" |
| 156 | _backend.delete(key) |
| 157 | |
| 158 | |
| 159 | def zadd(key: str, mapping: dict) -> None: |
nothing calls this directly
no test coverage detected
searching dependent graphs…