(name: str, default: str = "")
| 27 | |
| 28 | |
| 29 | def check_negative_env_flag(name: str, default: str = "") -> bool: |
| 30 | return os.getenv(name, default).upper() in ["OFF", "0", "NO", "FALSE", "N"] |
| 31 | |
| 32 | |
| 33 | def gather_paths(env_vars: Iterable[str]) -> List[str]: |
no outgoing calls
no test coverage detected
searching dependent graphs…