From 3fe7eb41ace453fa0ccd2c3f572f3876b2f30c3a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=BE=9D=E7=91=AA=E8=B2=93?= Date: Fri, 10 Mar 2023 09:17:55 +0800 Subject: [PATCH] Removed the unused "__in_use_account_id" property from the TransactionForm form. --- src/accounting/transaction/forms/transaction.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/accounting/transaction/forms/transaction.py b/src/accounting/transaction/forms/transaction.py index baa398e..5256918 100644 --- a/src/accounting/transaction/forms/transaction.py +++ b/src/accounting/transaction/forms/transaction.py @@ -80,8 +80,6 @@ class TransactionForm(FlaskForm): """The journal entry collector. The default is the base abstract collector only to provide the correct type. The subclass forms should provide their own collectors.""" - self.__in_use_account_id: set[int] | None = None - """The ID of the accounts that are in use.""" def populate_obj(self, obj: Transaction) -> None: """Populates the form data into a transaction object.