Removed an unnecessary f-string from the csv method of the AccountsWithUnappliedOriginalLineItems report class.

This commit is contained in:
依瑪貓 2023-04-30 05:34:34 +08:00
parent c9bb4197be
commit f9aa226bf9

View File

@ -143,7 +143,7 @@ class AccountsWithUnappliedOriginalLineItems(BaseReport):
:return: The response of the report for download.
"""
filename: str = f"unapplied-accounts.csv"
filename: str = "unapplied-accounts.csv"
return csv_download(filename, get_csv_rows(self.__accounts))
def html(self) -> str: