We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e9a2545 commit 5386b9aCopy full SHA for 5386b9a
1 file changed
streamz/graph.py
@@ -131,7 +131,7 @@ def readable_graph(graph):
131
def to_graphviz(graph, **graph_attr):
132
import graphviz
133
134
- gvz = graphviz.Digraph(graph_attr=graph_attr)
+ gvz = graphviz.Digraph(**graph_attr)
135
for node, attrs in graph.nodes.items():
136
gvz.node(node, **attrs)
137
for edge, attrs in graph.edges().items():
0 commit comments