Skip to content

Commit 9a9e2f3

Browse files
authored
remove trailing spaces
1 parent f406294 commit 9a9e2f3

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

streamz/graph.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -131,13 +131,13 @@ def readable_graph(graph):
131131
def to_graphviz(graph, **graph_attr):
132132
import graphviz
133133

134-
digraph_kwargs = {'name', 'comment', 'filename',
134+
digraph_kwargs = {'name', 'comment', 'filename',
135135
'format', 'engine', 'encoding',
136-
'graph_attr', 'node_attr', 'edge_attr',
136+
'graph_attr', 'node_attr', 'edge_attr',
137137
'body', 'strict', 'directory'}
138138
if not digraph_kwargs.intersection(graph_attr):
139139
graph_attr = dict(graph_attr=graph_attr)
140-
140+
141141
gvz = graphviz.Digraph(**graph_attr)
142142
for node, attrs in graph.nodes.items():
143143
gvz.node(node, **attrs)

0 commit comments

Comments
 (0)