(self)
| 267 | |
| 268 | @property |
| 269 | def profile(self): |
| 270 | if self._profile is None: |
| 271 | profile = self.get_config_variable('profile') |
| 272 | self._profile = profile |
| 273 | return self._profile |
| 274 | |
| 275 | def get_config_variable(self, logical_name, methods=None): |
| 276 | if methods is not None: |
nothing calls this directly
no test coverage detected