(config: dict[str, Any])
| 16 | |
| 17 | |
| 18 | def get_addon_cls(config: dict[str, Any]) -> type: |
| 19 | class AddonWithConfig: |
| 20 | def update_settings(self, settings: BaseSettings): |
| 21 | settings.update(config, priority="addon") |
| 22 | |
| 23 | return AddonWithConfig |
| 24 | |
| 25 | |
| 26 | class CreateInstanceAddon: |
no outgoing calls
no test coverage detected