()
| 63 | |
| 64 | |
| 65 | def _controlled_modules() -> dict[str, str]: |
| 66 | return { |
| 67 | plugin_id: module_name |
| 68 | for manager in _managers |
| 69 | for plugin_id, module_name in manager.controlled_modules.items() |
| 70 | } |
| 71 | |
| 72 | |
| 73 | def _find_parent_plugin_id( |
no test coverage detected