From 979eea606af6d2c6c77b056d45c1d0d3b9d7baf1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=BE=9D=E7=91=AA=E8=B2=93?= Date: Wed, 22 Mar 2023 20:40:43 +0800 Subject: [PATCH] Added the missing documentation to the account property of the CurrentAccount data model. --- src/accounting/utils/current_account.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/accounting/utils/current_account.py b/src/accounting/utils/current_account.py index ce489c3..888e019 100644 --- a/src/accounting/utils/current_account.py +++ b/src/accounting/utils/current_account.py @@ -36,6 +36,7 @@ class CurrentAccount: :param account: The account. """ self.account: Account | None = account + """The actual account.""" self.id: int = -1 if account is None else account.id """The ID.""" self.code: str = "" if account is None else account.code