(self, defaults=None)
| 81 | |
| 82 | class Settings: |
| 83 | def __init__(self, defaults=None): |
| 84 | self.default_config = defaults or {} |
| 85 | self.user_config = {} |
| 86 | |
| 87 | def __getattr__(self, attr): |
| 88 | if attr in self.user_config: |
nothing calls this directly
no outgoing calls
no test coverage detected