From 7faf3b02a382021f64ec3b4d75318bd1cdbe613d Mon Sep 17 00:00:00 2001 From: sartography-automated-committer Date: Mon, 4 Mar 2024 05:17:51 +0000 Subject: [PATCH] User: hurairaidrees@gmail.com clicked save for playground/nutech/receipt/receipt.bpmn --- playground/nutech/receipt/receipt.bpmn | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/playground/nutech/receipt/receipt.bpmn b/playground/nutech/receipt/receipt.bpmn index 40bcbd4f..ff87c8ea 100644 --- a/playground/nutech/receipt/receipt.bpmn +++ b/playground/nutech/receipt/receipt.bpmn @@ -150,13 +150,13 @@ elif time_format == "Day(s)": # Create ISO 8601 string representation based on the selected time format if time_format == "Hour(s)": - timer_value_1 = f"{numeric_part_with_PT}H" + timer_value_1 = f"{str(numeric_part_with_PT)}H" elif time_format == "Minute(s)": - timer_value_1 = f"{numeric_part_with_PT}M" + timer_value_1 = f"{str(numeric_part_with_PT)}M" elif time_format == "Second(s)": - timer_value_1 = f"{numeric_part_with_PT}S" + timer_value_1 = f"{str(numeric_part_with_PT)}S" elif time_format == "Day(s)": - timer_value_1 = f"{numeric_part_with_PT}D" + timer_value_1 = f"{str(numeric_part_with_PT)}D" # Now timer_value_tfc_str contains the ISO 8601 string representation based on the selected time format print(timer_value_1)