()
| 124 | |
| 125 | |
| 126 | def auth_path() -> Path: |
| 127 | override = os.environ.get("BH_AUTH_PATH") |
| 128 | if override: |
| 129 | return Path(override).expanduser() |
| 130 | return paths.config_dir() / "auth.json" |
| 131 | |
| 132 | |
| 133 | def load_auth_file(path: Path | None = None) -> dict: |
no outgoing calls
no test coverage detected
searching dependent graphs…