()
| 55 | |
| 56 | |
| 57 | def check_imports() -> bool: |
| 58 | ok = True |
| 59 | for module in REQUIRED_IMPORTS: |
| 60 | available = module_available(module) |
| 61 | status(available, f"import {module}") |
| 62 | ok = ok and available |
| 63 | return ok |
| 64 | |
| 65 | |
| 66 | def check_env_file() -> bool: |
no test coverage detected