(self, key: str)
| 36 | del self._stats[key] |
| 37 | |
| 38 | def __getitem__(self, key: str) -> Any: |
| 39 | return self._stats[key] |
| 40 | |
| 41 | def items(self) -> ItemsView[str, Any]: |
| 42 | return self._stats.items() |
nothing calls this directly
no outgoing calls
no test coverage detected