(self)
| 249 | """ |
| 250 | |
| 251 | def __init__(self): |
| 252 | self._profiles = {} |
| 253 | self.register_profile(KnownConfigProfiles.WanDevelopment.value, WanDevelopmentProfile()) |
| 254 | |
| 255 | def apply_profile(self, |
| 256 | profile_name, # type: str |
nothing calls this directly
no test coverage detected