MCPcopy Create free account
hub / github.com/SourceCode-AI/aura / check_reverse_dependencies

Function check_reverse_dependencies

aura/info.py:47–60  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

45
46
47def check_reverse_dependencies() -> dict:
48 try:
49 if config.get_reverse_dependencies_path():
50 return {
51 "enabled": True,
52 "description": "Reverse dependencies dataset present. Package scoring feature is fully enabled"
53 }
54 except MissingFile:
55 pass
56
57 return {
58 "enabled": False,
59 "description": "Reverse dependencies dataset not found, package scoring may be affected. Run `aura update` to download"
60 }
61
62
63def check_git() -> dict:

Callers 1

gather_aura_informationFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected