From cb4258dd6dd96ed6d806b51647f362506642d28b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=BE=9D=E7=91=AA=E8=B2=93?= Date: Thu, 9 Mar 2023 07:31:06 +0800 Subject: [PATCH] Removed the unused "is_total" property from the ReportEntry class of the journal. --- src/accounting/report/reports/journal.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/accounting/report/reports/journal.py b/src/accounting/report/reports/journal.py index 7b573e2..0552d3a 100644 --- a/src/accounting/report/reports/journal.py +++ b/src/accounting/report/reports/journal.py @@ -49,8 +49,6 @@ class ReportEntry: """The journal entry.""" self.transaction: Transaction | None = None """The transaction.""" - self.is_total: bool = False - """Whether this is the total entry.""" self.currency: Currency | None = None """The account.""" self.account: Account = entry.account