Removed an unnecessary f-string from the csv method of the AccountsWithUnappliedOriginalLineItems report class.
This commit is contained in:
parent
c9bb4197be
commit
f9aa226bf9
@ -143,7 +143,7 @@ class AccountsWithUnappliedOriginalLineItems(BaseReport):
|
|||||||
|
|
||||||
:return: The response of the report for download.
|
: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))
|
return csv_download(filename, get_csv_rows(self.__accounts))
|
||||||
|
|
||||||
def html(self) -> str:
|
def html(self) -> str:
|
||||||
|
Loading…
Reference in New Issue
Block a user