From f8e57889739708dadd071417e79efd3985cef4e0 Mon Sep 17 00:00:00 2001 From: Samir Benmendil Date: Sun, 9 Feb 2025 14:19:28 +0000 Subject: [PATCH] bin: add notes to monzo qif --- bin/monzo.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bin/monzo.py b/bin/monzo.py index 6980487..1335007 100755 --- a/bin/monzo.py +++ b/bin/monzo.py @@ -56,6 +56,8 @@ if __name__ == "__main__": memo += "\n{local_amount} {local_currency}".format(**t) notes = t["notes"] + if notes: + memo += "\nNotes: {notes}".format(**t) if outformat == "csv": print('{date:%Y-%m-%d},{amount},"{payee}","{description}","{notes}"'.format(date=date, payee=payee, -- 2.48.1