(value: str)
| 275 | |
| 276 | @staticmethod |
| 277 | def _extract_module_from_all(value: str) -> str | None: |
| 278 | if not value.endswith(MODULE_ALL_SUFFIX): |
| 279 | return None |
| 280 | module = value[: -len(MODULE_ALL_SUFFIX)].strip() |
| 281 | return module or None |
| 282 | |
| 283 | @staticmethod |
| 284 | def _expand_module_all_entry( |