(self, key: str)
| 76 | self._options[key] = value # type: ignore[literal-required] |
| 77 | |
| 78 | def __delitem__(self, key: str) -> None: |
| 79 | del self._options[key] # type: ignore |
| 80 | |
| 81 | def __iter__(self) -> Iterable[str]: # type: ignore |
| 82 | return iter(self._options) |
nothing calls this directly
no outgoing calls
no test coverage detected