(self, state: InstanceState[Any])
| 274 | self._dict.pop(key, None) |
| 275 | |
| 276 | def discard(self, state: InstanceState[Any]) -> None: |
| 277 | self.safe_discard(state) |
| 278 | |
| 279 | def safe_discard(self, state: InstanceState[Any]) -> None: |
| 280 | key = state.key |
no test coverage detected