Added the missing documentation to the account property of the CurrentAccount data model.
This commit is contained in:
parent
5a9e08f2c4
commit
979eea606a
@ -36,6 +36,7 @@ class CurrentAccount:
|
|||||||
:param account: The account.
|
:param account: The account.
|
||||||
"""
|
"""
|
||||||
self.account: Account | None = account
|
self.account: Account | None = account
|
||||||
|
"""The actual account."""
|
||||||
self.id: int = -1 if account is None else account.id
|
self.id: int = -1 if account is None else account.id
|
||||||
"""The ID."""
|
"""The ID."""
|
||||||
self.code: str = "" if account is None else account.code
|
self.code: str = "" if account is None else account.code
|
||||||
|
Loading…
Reference in New Issue
Block a user