From 6020a4f5db0bf40f54e35b725b305cfeafdd8f2b Mon Sep 17 00:00:00 2001 From: Anuj Verma Date: Sat, 30 Apr 2022 23:12:39 +0530 Subject: [PATCH] format bugfix --- npbc_core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/npbc_core.py b/npbc_core.py index 1116777..b6c1537 100644 --- a/npbc_core.py +++ b/npbc_core.py @@ -343,7 +343,7 @@ def format_output(costs: dict[int, float], total: float, month: int, year: int) format_string = f"For {date_type(year=year, month=month, day=1).strftime(r'%B %Y')}\n\n" - format_string += f"**TOTAL**: {total}\n" + format_string += f"*TOTAL*: {total}\n" format_string += '\n'.join([ f"{papers[paper_id]}: {cost}" # type: ignore