We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3a87959 commit 4aca013Copy full SHA for 4aca013
1 file changed
graphkit/plot.py
@@ -33,7 +33,7 @@ def get_node_name(a):
33
kw = {}
34
if isinstance(nx_node, str):
35
# Only DeleteInstructions data in steps.
36
- if nx_node in steps:
+ if steps and nx_node in steps:
37
kw = {"color": "red", "penwidth": 2}
38
39
# SHAPE change if in inputs/outputs.
@@ -129,7 +129,7 @@ def plot_graph(
129
130
ARROWS
131
132
- - **solid black arrows**: dependencies (source-data are``need``\ed
+ - **solid black arrows**: dependencies (source-data are``need``-ed
133
by target-operations, sources-operations ``provide`` target-data)
134
- **dashed black arrows**: optional needs
135
- **green-dotted arrows**: execution steps labeled in succession
0 commit comments