(self, options: OptionsType)
| 67 | # but we keep it for backwards compatibility. |
| 68 | |
| 69 | def __init__(self, options: OptionsType) -> None: |
| 70 | self._options = cast(OptionsType, dict(options)) |
| 71 | |
| 72 | def __getitem__(self, key: str) -> Any: |
| 73 | return self._options[key] # type: ignore[literal-required] |
nothing calls this directly
no outgoing calls
no test coverage detected