From 3b4244339b911b75a298538afddc685a91a35d83 Mon Sep 17 00:00:00 2001 From: Jonatan Date: Mon, 28 Apr 2025 23:35:05 +0200 Subject: [PATCH] Removed quotation mark around the paths --- src/simod/control_flow/discovery.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/simod/control_flow/discovery.py b/src/simod/control_flow/discovery.py index 5a350d4f..c4fb6f55 100644 --- a/src/simod/control_flow/discovery.py +++ b/src/simod/control_flow/discovery.py @@ -143,8 +143,8 @@ def add_bpmn_diagram_to_model(bpmn_model_path: Path): args = [ "java", "-jar", - '"' + str(bpmn_layout_jar_path) + '"', - '"' + str(bpmn_model_path) + '"' + str(bpmn_layout_jar_path), + str(bpmn_model_path) ] print_step(f"Adding BPMN diagram to the model: {args}") execute_external_command(args)