(exc=True)
| 255 | |
| 256 | |
| 257 | def get_reverse_dependencies_path(exc=True) -> Path: |
| 258 | pth = os.environ.get("AURA_REVERSE_DEPENDENCIES", None) or CFG["aura"]["reverse_dependencies"] |
| 259 | return Path(get_file_location(pth, CFG_PATH, exc=exc)) |
| 260 | |
| 261 | |
| 262 | def iter_pypi_stats() -> Generator[dict, None, None]: |
nothing calls this directly
no test coverage detected