fix: prior pre-pr drift check failures

This commit is contained in:
Sabiha Khan 2026-05-12 13:56:01 +05:30
parent 4a6752e62b
commit 5005b57dbd
3 changed files with 8 additions and 8 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,
}
)