Cleanup graph source file after rendering graph to pdf

This commit is contained in:
Arne de Laat 2018-01-16 22:10:41 +01:00 committed by GitHub
parent 19f316e9c5
commit 50c4a8985d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -76,7 +76,7 @@ def view(stream_spec, **kwargs):
downstream_node_id = str(hash(edge.downstream_node)) downstream_node_id = str(hash(edge.downstream_node))
graph.edge(upstream_node_id, downstream_node_id, **kwargs) graph.edge(upstream_node_id, downstream_node_id, **kwargs)
graph.view(filename) graph.view(filename, cleanup=True)
return stream_spec return stream_spec