(title: str, names: list[str])
| 74 | |
| 75 | |
| 76 | def check_env_group(title: str, names: list[str]) -> bool: |
| 77 | print(f"\n{title}") |
| 78 | ok = True |
| 79 | for name in names: |
| 80 | present = bool(os.environ.get(name, "").strip()) |
| 81 | status(present, name) |
| 82 | ok = ok and present |
| 83 | return ok |
| 84 | |
| 85 | |
| 86 | def check_paths() -> bool: |