MCPcopy Create free account
hub / github.com/psf/cachecontrol / delete

Method delete

cachecontrol/cache.py:49–52  ·  view source on GitHub ↗
(self, key: str)

Source from the content-addressed store, hash-verified

47 self.data.update({key: value})
48
49 def delete(self, key: str) -> None:
50 with self.lock:
51 if key in self.data:
52 self.data.pop(key)
53
54
55class SeparateBodyBaseCache(BaseCache):

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected