fix bmo parser for new format / lints

This commit is contained in:
2026-05-09 00:00:38 -07:00
parent 93778beb31
commit 2662747ebe
3 changed files with 21 additions and 10 deletions
+2 -2
View File
@@ -1,5 +1,5 @@
import datetime
from dataclasses import dataclass
from datetime import date
from decimal import Decimal
from uuid import UUID
@@ -12,7 +12,7 @@ class Transaction:
"""
account: UUID
date: date
date: datetime.date
amount: Decimal # Note: decimal dollars, JS shim will convert to cents as described in the API
payee: str # imported_payee in API
notes: str