Merge pull request #58 from 153957/patch-1

Cleanup graph source file after rendering graph to pdf
This commit is contained in:
Karl Kroening 2018-01-27 22:21:27 -08:00 committed by GitHub
commit 6ebda44a63
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))
graph.edge(upstream_node_id, downstream_node_id, **kwargs)
graph.view(filename)
graph.view(filename, cleanup=True)
return stream_spec