From ca9ed4f70fa95ec04c5bb9001170dbab9ac98f99 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Mon, 6 Jan 2025 11:28:10 +0100 Subject: [PATCH] chore: remove unused NOQA tag Probably needed for a different linter. --- fiobank.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fiobank.py b/fiobank.py index b701d0c..93364b1 100644 --- a/fiobank.py +++ b/fiobank.py @@ -147,7 +147,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 = []