Skip to content

Commit

Permalink
format driver.py
Browse files Browse the repository at this point in the history
  • Loading branch information
erexer committed May 30, 2024
1 parent 66f6cc7 commit a2f2a60
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion naturf/driver.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,10 @@ def graph(self, view: bool = True, output_file_path: Union[str, None] = None) ->
"""Show the DAG. Return the graph object for the given inputs to execute."""

return self.dr.visualize_execution(
final_vars=self.outputs, inputs=self.inputs, output_file_path=output_file_path, render_kwargs={"view": view}
final_vars=self.outputs,
inputs=self.inputs,
output_file_path=output_file_path,
render_kwargs={"view": view},
)

def list_parameters(self):
Expand Down

0 comments on commit a2f2a60

Please sign in to comment.