(module_name)
| 449 | needed - apply common sense). |
| 450 | """ |
| 451 | def check_importable(module_name): |
| 452 | try: |
| 453 | importlib.import_module(module_name) |
| 454 | except (ImportError, AttributeError): |
| 455 | return False |
| 456 | |
| 457 | return True |
| 458 | |
| 459 | module_names = [] |
| 460 | for module_name in PUBLIC_MODULES: |
no outgoing calls
no test coverage detected