fix: prior pre-pr drift check failures (#276)

* fix: prior pre-pr drift check failures

* docs: update api reference openapi json
This commit is contained in:
Sabiha Khan 2026-05-12 14:17:40 +05:30 committed by GitHub
parent 15a7cd5b6d
commit a1902829db
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 9 additions and 9 deletions

View file

@ -92,7 +92,9 @@ def audit_definition(nodes, edges) -> list[dict]:
"source_type": src_type,
"target_id": tgt,
"target_type": tgt_type,
"edge_label": (e.get("data") or {}).get("label") if isinstance(e.get("data"), dict) else None,
"edge_label": (e.get("data") or {}).get("label")
if isinstance(e.get("data"), dict)
else None,
"reason": r,
}
)