(self, key: str)
| 70 | self._options = cast(OptionsType, dict(options)) |
| 71 | |
| 72 | def __getitem__(self, key: str) -> Any: |
| 73 | return self._options[key] # type: ignore[literal-required] |
| 74 | |
| 75 | def __setitem__(self, key: str, value: Any) -> None: |
| 76 | self._options[key] = value # type: ignore[literal-required] |
nothing calls this directly
no outgoing calls
no test coverage detected