Print the transaction ID

This commit is contained in:
Luís Murta 2023-04-12 18:23:24 +01:00
parent 2cbf00a939
commit 5af05c2fa4
Signed by: satprog
GPG Key ID: 169EF1BBD7049F94

View File

@ -106,6 +106,7 @@ class Transaction(Base, Export):
@property @property
def format(self) -> dict[str, Any]: def format(self) -> dict[str, Any]:
return dict( return dict(
id=self.id,
date=self.date, date=self.date,
description=self.description, description=self.description,
amount=self.amount, amount=self.amount,