MCPcopy Create free account
hub / github.com/OpenRaiser/PaperFlow / check_env_group

Function check_env_group

scripts/doctor.py:76–83  ·  view source on GitHub ↗
(title: str, names: list[str])

Source from the content-addressed store, hash-verified

74
75
76def 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
86def check_paths() -> bool:

Callers 1

mainFunction · 0.85

Calls 2

statusFunction · 0.85
getMethod · 0.80

Tested by

no test coverage detected