(self)
| 79 | del self._options[key] # type: ignore |
| 80 | |
| 81 | def __iter__(self) -> Iterable[str]: # type: ignore |
| 82 | return iter(self._options) |
| 83 | |
| 84 | def __len__(self) -> int: |
| 85 | return len(self._options) |
nothing calls this directly
no outgoing calls
no test coverage detected