Check if a plugin is enabled.
(name: str)
| 180 | |
| 181 | |
| 182 | def is_plugin_enabled(name: str) -> bool: |
| 183 | """Check if a plugin is enabled.""" |
| 184 | _workers_plugin_registry.initialize_from_settings() |
| 185 | return _workers_plugin_registry.is_plugin_enabled(name) |
| 186 | |
| 187 | |
| 188 | def get_plugin_config(name: str) -> dict[str, Any]: |
nothing calls this directly
no test coverage detected