Retrieve the value of a persistent configuration setting
(self, key: str, default: OptionValue = None)
| 2134 | return r |
| 2135 | |
| 2136 | def get_module_option(self, key: str, default: OptionValue = None) -> OptionValue: |
| 2137 | """ |
| 2138 | Retrieve the value of a persistent configuration setting |
| 2139 | """ |
| 2140 | self._validate_module_option(key) |
| 2141 | return self._get_module_option(key, default) |
| 2142 | |
| 2143 | def get_module_option_ex(self, module: str, |
| 2144 | key: str, |
no test coverage detected