Skip to content

Commit 80e64f9

Browse files
lkk7mr-c
authored andcommitted
Fix pydot tests
1 parent 6d8c2a4 commit 80e64f9

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

cwltool/cwlviewer.py

-2
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,6 @@ def _set_input_edges(self) -> None:
100100
inputs_subgraph = pydot.Subgraph(graph_name="cluster_inputs")
101101
self._dot_graph.add_subgraph(inputs_subgraph)
102102
inputs_subgraph.set("rank", "same")
103-
inputs_subgraph.create_attribute_methods(["style"])
104103
inputs_subgraph.set("style", "dashed")
105104
inputs_subgraph.set("label", "Workflow Inputs")
106105

@@ -128,7 +127,6 @@ def _set_output_edges(self) -> None:
128127
outputs_graph = pydot.Subgraph(graph_name="cluster_outputs")
129128
self._dot_graph.add_subgraph(outputs_graph)
130129
outputs_graph.set("rank", "same")
131-
outputs_graph.create_attribute_methods(["style"])
132130
outputs_graph.set("style", "dashed")
133131
outputs_graph.set("label", "Workflow Outputs")
134132
outputs_graph.set("labelloc", "b")

0 commit comments

Comments
 (0)