(a, b)
| 45 | print('"%s" [ shape=ellipse];' % a, file=rval) |
| 46 | |
| 47 | def edge(a, b): |
| 48 | text = f'"{a}" -> "{b}";' |
| 49 | if text not in edges: |
| 50 | print(text, file=rval) |
| 51 | edges.add(text) |
| 52 | |
| 53 | for hp, dct in list(hps.items()): |
| 54 | # create the node |
no outgoing calls
no test coverage detected