(self, key: str, value: str)
| 232 | target._remove(getattr(self, "_keypath", tuple()), key) |
| 233 | |
| 234 | def _track_modification_of(self, key: str, value: str) -> None: |
| 235 | target = None |
| 236 | if self._is_leaf: |
| 237 | target = self._root |
| 238 | elif self._is_root: |
| 239 | target = self |
| 240 | if target is not None: |
| 241 | target._modify(getattr(self, "_keypath", tuple()), key, value) |
| 242 | |
| 243 | def __delitem__(self, key: str) -> None: |
| 244 | del self._config[key] |
no test coverage detected