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.
|
||||
"""
|
||||
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
|
||||
|
Loading…
Reference in New Issue
Block a user