(self)
| 16 | super().__init__() |
| 17 | |
| 18 | def load_config(self) -> None: |
| 19 | config = {key: value for key, value in self.options.items() if key in self.cfg.settings and value is not None} |
| 20 | for key, value in config.items(): |
| 21 | self.cfg.set(key.lower(), value) |
| 22 | |
| 23 | def load(self) -> BaseApplication: |
| 24 | return self.application |
nothing calls this directly
no outgoing calls
no test coverage detected