From 5af05c2fa4c6c295e80fffe2417b50fb498edd97 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lu=C3=ADs=20Murta?= Date: Wed, 12 Apr 2023 18:23:24 +0100 Subject: [PATCH] Print the transaction ID --- pfbudget/db/model.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pfbudget/db/model.py b/pfbudget/db/model.py index eb2d712..68d2fa6 100644 --- a/pfbudget/db/model.py +++ b/pfbudget/db/model.py @@ -106,6 +106,7 @@ class Transaction(Base, Export): @property def format(self) -> dict[str, Any]: return dict( + id=self.id, date=self.date, description=self.description, amount=self.amount,