(self, key: str)
| 522 | return plugins |
| 523 | |
| 524 | def get_plugin(self, key: str) -> Optional[LoadedPlugin]: |
| 525 | with self._lock: |
| 526 | return self._registry.get(key) |
| 527 | |
| 528 | def update_settings(self, key: str, settings: Dict[str, Any]) -> Dict[str, Any]: |
| 529 | cfg = PluginConfig.objects.get(key=key) |
no test coverage detected