(self, settings)
| 7 | |
| 8 | class Settings: |
| 9 | def __init__(self, settings): |
| 10 | |
| 11 | for attr in dir(settings): |
| 12 | if attr.isupper(): |
| 13 | setattr(self, attr, getattr(settings, attr)) |
| 14 | |
| 15 | settings = Settings(settings) |
nothing calls this directly
no outgoing calls
no test coverage detected