Skip to content

Commit

Permalink
Fix for real
Browse files Browse the repository at this point in the history
  • Loading branch information
raphaelm committed Nov 4, 2024
1 parent 42b86fb commit e0be157
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion fints/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version = '4.2.1'
version = '4.2.2'
2 changes: 1 addition & 1 deletion fints/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -540,7 +540,7 @@ def get_transactions(self, account: SEPAAccount, start_date: datetime.date = Non
),
lambda responses: mt940_to_array(''.join(
[seg.statement_booked.decode('iso-8859-1') for seg in responses] +
([seg.statement_pending.decode('iso-8859-1') for seg in responses] if include_pending and seg.statement_pending else [])
([seg.statement_pending.decode('iso-8859-1') for seg in responses if seg.statement_pending] if include_pending else [])
)),
'HIKAZ',
# Note 1: Some banks send the HIKAZ data in arbitrary splits.
Expand Down

0 comments on commit e0be157

Please sign in to comment.