From 8c899776f26aafaf3244d55e6070c5d44ae4292a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=BE=9D=E7=91=AA=E8=B2=93?= Date: Sun, 30 Apr 2023 05:35:13 +0800 Subject: [PATCH] Corrected the filename in the csv method of the AccountsWithUnmatchedOffsets report class. --- src/accounting/report/reports/unmatched_accounts.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/accounting/report/reports/unmatched_accounts.py b/src/accounting/report/reports/unmatched_accounts.py index 055c9bd..ac83335 100644 --- a/src/accounting/report/reports/unmatched_accounts.py +++ b/src/accounting/report/reports/unmatched_accounts.py @@ -144,7 +144,7 @@ class AccountsWithUnmatchedOffsets(BaseReport): :return: The response of the report for download. """ - filename: str = f"unapplied-accounts.csv" + filename: str = "unmatched-accounts.csv" return csv_download(filename, get_csv_rows(self.__accounts)) def html(self) -> str: