Skip to content

Commit

Permalink
Fix pydot tests
Browse files Browse the repository at this point in the history
  • Loading branch information
lkk7 authored and mr-c committed Aug 20, 2024
1 parent 6d8c2a4 commit 80e64f9
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions cwltool/cwlviewer.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,6 @@ def _set_input_edges(self) -> None:
inputs_subgraph = pydot.Subgraph(graph_name="cluster_inputs")
self._dot_graph.add_subgraph(inputs_subgraph)
inputs_subgraph.set("rank", "same")
inputs_subgraph.create_attribute_methods(["style"])
inputs_subgraph.set("style", "dashed")
inputs_subgraph.set("label", "Workflow Inputs")

Expand Down Expand Up @@ -128,7 +127,6 @@ def _set_output_edges(self) -> None:
outputs_graph = pydot.Subgraph(graph_name="cluster_outputs")
self._dot_graph.add_subgraph(outputs_graph)
outputs_graph.set("rank", "same")
outputs_graph.create_attribute_methods(["style"])
outputs_graph.set("style", "dashed")
outputs_graph.set("label", "Workflow Outputs")
outputs_graph.set("labelloc", "b")
Expand Down

0 comments on commit 80e64f9

Please sign in to comment.