(value: str | None)
| 32 | |
| 33 | @staticmethod |
| 34 | def _parse_plugin_names(value: str | None) -> set[str]: |
| 35 | if not value: |
| 36 | return set() |
| 37 | return {item.strip() for item in value.split(",") if item.strip()} |
| 38 | |
| 39 | @classmethod |
| 40 | def _is_plugin_enabled(cls, plugin: MemOSPlugin) -> bool: |
no test coverage detected