Return all configuration options. Returns: All configuration options.
(self)
| 74 | return default |
| 75 | |
| 76 | def getConfigs(self) -> dict[str, Any]: |
| 77 | """ |
| 78 | Return all configuration options. |
| 79 | |
| 80 | Returns: |
| 81 | All configuration options. |
| 82 | """ |
| 83 | return {key: self.getConfig(key) for key in self.config.keys()} |
| 84 | |
| 85 | def getConfigInfo(self) -> list[tuple[str, str]]: |
| 86 | """ |