Corrected the filename in the csv method of the AccountsWithUnmatchedOffsets report class.

This commit is contained in:
依瑪貓 2023-04-30 05:35:13 +08:00
parent f9aa226bf9
commit 8c899776f2

View File

@ -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: