Skip to content

Commit

Permalink
fix(banks/dbs): parsing transactions
Browse files Browse the repository at this point in the history
  • Loading branch information
Nanosync authored and benjamin-awd committed Dec 13, 2024
1 parent ee68dce commit 838222b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/monopoly/banks/dbs/dbs.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,9 @@ class Dbs(BankBase):
statement_type=EntryType.DEBIT,
statement_date_pattern=regex(rf"Details as at {ISO8601.DD_MMM_YYYY}"),
multiline_transactions=True,
header_pattern=regex(r"(\s+Date\s+Description\s+Withdrawal \(-\).*)"),
header_pattern=regex(r"(\s*Date\s+Description\s+Withdrawal \(-\).*)"),
transaction_pattern=DebitTransactionPatterns.DBS_POSB_CONSOLIDATED,
transaction_bound=100,
transaction_bound=114,
)

identifiers = [
Expand Down

0 comments on commit 838222b

Please sign in to comment.