We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f5c00fa commit 152f97cCopy full SHA for 152f97c
src/wireviz/wv_harness.py
@@ -323,7 +323,8 @@ def create_graph(self) -> Graph:
323
dot.attr("edge", color="#000000")
324
loops = gv_connector_loops(connector)
325
for head, tail in loops:
326
- dot.edge(head, tail)
+ dot.edge(head, tail, label=" ")
327
+ # ^ workaround to avoid oversized loops
328
329
# determine if there are double- or triple-colored wires in the harness;
330
# if so, pad single-color wires to make all wires of equal thickness
0 commit comments