Skip to content
Snippets Groups Projects
Commit bb636b67 authored by Thomas Kramer's avatar Thomas Kramer
Browse files

parametrize output directory

parent a3bee99e
No related merge requests found
......@@ -23,9 +23,10 @@ class InspectRouter(GraphRouter):
def __init__(self,
sub_graphrouter: GraphRouter,
plot_to_files = True):
plot_to_files = True,
output_dir: str = "/tmp"):
self.sub_graphrouter = sub_graphrouter
self.output_dir = "/tmp"
self.output_dir = output_dir
self.plot_to_files = plot_to_files
self.iteration_count = 0
self._graph = None
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment