From 80e64f9587e61f16b218a21e1777eeb3d5e336d3 Mon Sep 17 00:00:00 2001 From: lkk7 Date: Tue, 16 Jul 2024 22:58:06 +0200 Subject: [PATCH] Fix pydot tests --- cwltool/cwlviewer.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/cwltool/cwlviewer.py b/cwltool/cwlviewer.py index e544a568e..ba3c70f28 100644 --- a/cwltool/cwlviewer.py +++ b/cwltool/cwlviewer.py @@ -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") @@ -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")