fix: escape DOT renderer quotes in dependency_graph.py (#212) #214
Reference in New Issue
Block a user
Delete Branch "fix/212-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?
Problem
Lines 152-153 used unescaped double quotes inside double-quoted Python strings:
Python parsed the
"inside"as the end of the string literal, causingSyntaxError: '(' was never closed.Fix
Switched outer quotes to single quotes:
Verification
DOT output still includes the intended styling with hex color codes.
Closes #212
0e54a6bc1atoec0e9d65ca