Skip to content

Commit

Permalink
Merge pull request #50 from nijel/noqa
Browse files Browse the repository at this point in the history
chore: remove unused NOQA tag
  • Loading branch information
honzajavorek authored Jan 6, 2025
2 parents e1769c9 + ca9ed4f commit 7c7bda1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fiobank.py
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ def _parse_info(self, data: dict) -> dict:
def _parse_transactions(self, data: dict) -> Generator[dict, None, None]:
schema = self.transaction_schema
try:
entries = data["accountStatement"]["transactionList"]["transaction"] # NOQA
entries = data["accountStatement"]["transactionList"]["transaction"]
except TypeError:
entries = []

Expand Down

0 comments on commit 7c7bda1

Please sign in to comment.