Get all configuration options as a simple dictionary. Returns: Dictionary of option names to values
(self)
| 266 | return True |
| 267 | |
| 268 | def get_all_options(self) -> Dict[str, Any]: |
| 269 | """ |
| 270 | Get all configuration options as a simple dictionary. |
| 271 | |
| 272 | Returns: |
| 273 | Dictionary of option names to values |
| 274 | """ |
| 275 | return {name: opt.value for name, opt in self.options.items()} |
| 276 | |
| 277 | def validate(self) -> List[str]: |
| 278 | """ |