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 f7603f4 commit f8b7bdbCopy full SHA for f8b7bdb
streamz/graph.py
@@ -132,7 +132,7 @@ def to_graphviz(graph, **graph_attr):
132
import graphviz
133
134
gvz = graphviz.Digraph(graph_attr=graph_attr)
135
- for node, attrs in graph.node.items():
+ for node, attrs in graph.nodes.items():
136
gvz.node(node, **attrs)
137
for edge, attrs in graph.edges().items():
138
gvz.edge(edge[0], edge[1], **attrs)
0 commit comments