(self, application: BaseApplication, option: dict[str, Any] | None = None)
| 11 | |
| 12 | class StandaloneApplication(BaseApplication): |
| 13 | def __init__(self, application: BaseApplication, option: dict[str, Any] | None = None) -> None: |
| 14 | self.options = option or {} |
| 15 | self.application = application |
| 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} |
nothing calls this directly
no outgoing calls
no test coverage detected