From f6537ccbfd293dac5972e96cf2e2f85a14819cc2 Mon Sep 17 00:00:00 2001 From: JuanPedroGHM Date: Fri, 15 Sep 2023 16:40:37 +0200 Subject: [PATCH] fix: another typo --- perun/io/text_report.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/perun/io/text_report.py b/perun/io/text_report.py index caf661f..57fce26 100644 --- a/perun/io/text_report.py +++ b/perun/io/text_report.py @@ -111,7 +111,7 @@ def textReport(dataNode: DataNode, mr_id: str) -> str: money = e_kWh * config.getfloat("post-processing", "price_factor") / 1e2 money_icon = config.get("post-processing", "price_unit") - summary_str = f"The application has been run {n_runs} times. Throught its runtime, it has used {e_kWh:.3f} kWh, released a total of {kgCO2:.3f} kgCO2e into the atmosphere, and you paid {money:.2f} {money_icon} in electricity for it.\n" + summary_str = f"The application has been run {n_runs} times. Throughout its runtime, it has used {e_kWh:.3f} kWh, released a total of {kgCO2:.3f} kgCO2e into the atmosphere, and you paid {money:.2f} {money_icon} in electricity for it.\n" else: summary_str = f"The application has been run {n_runs} times."