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

Function analyze_pyproject

aura/analyzers/pyproject.py:19–27  ·  view source on GitHub ↗
(*, location: ScanLocation)

Source from the content-addressed store, hash-verified

17
18@Analyzer.ID("pyproject_toml")
19def analyze_pyproject(*, location: ScanLocation):
20 if location.location.name == "poetry.lock":
21 yield from analyzer_poetry_lock(location=location)
22 return
23
24 if location.location.name != "pyproject.toml":
25 return
26
27 pyproject = parse_toml(location.location.read_text()) # TODO
28
29
30def analyzer_poetry_lock(*, location: ScanLocation):

Callers

nothing calls this directly

Calls 1

analyzer_poetry_lockFunction · 0.85

Tested by

no test coverage detected