fix: escape quotes in DOT renderer (#212) #216
Reference in New Issue
Block a user
Delete Branch "burn/212-fix-dot-quoting"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Closes #212.
Problem: Lines 152-153 in
scripts/dependency_graph.pyused unescaped double quotes inside Python double-quoted string literals, causing SyntaxError.Fix: Changed to single-quoted strings with escaped inner double quotes.
Verified:
python3 -m py_compilepasses. DOT output unchanged.Supersedes #213.