Skip to content

Commit

Permalink
fix: another typo
Browse files Browse the repository at this point in the history
  • Loading branch information
JuanPedroGHM authored Sep 15, 2023
1 parent 910228f commit f6537cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion perun/io/text_report.py
Original file line number Diff line number Diff line change
Expand Up @@ -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."

Expand Down

0 comments on commit f6537cc

Please sign in to comment.