(self, logical_name, methods=None)
| 273 | return self._profile |
| 274 | |
| 275 | def get_config_variable(self, logical_name, methods=None): |
| 276 | if methods is not None: |
| 277 | return self._get_config_variable_with_custom_methods( |
| 278 | logical_name, methods |
| 279 | ) |
| 280 | return self.get_component('config_store').get_config_variable( |
| 281 | logical_name |
| 282 | ) |
| 283 | |
| 284 | def _get_config_variable_with_custom_methods(self, logical_name, methods): |
| 285 | # If a custom list of methods was supplied we need to perserve the |