Return descriptions of all configuration options. Returns: All descriptions of configuration options.
(self)
| 83 | return {key: self.getConfig(key) for key in self.config.keys()} |
| 84 | |
| 85 | def getConfigInfo(self) -> list[tuple[str, str]]: |
| 86 | """ |
| 87 | Return descriptions of all configuration options. |
| 88 | |
| 89 | Returns: |
| 90 | All descriptions of configuration options. |
| 91 | """ |
| 92 | return [(key, self.config[key][1]) for key in self.config.keys()] |
| 93 | |
| 94 | def setConfig(self, key: str, value: Any) -> None: |
| 95 | """ |
no outgoing calls