From b3009af2f85a88679e41c5b945e19f4ce1e348d1 Mon Sep 17 00:00:00 2001 From: Raphael Michel Date: Sun, 22 Dec 2019 18:08:17 +0100 Subject: [PATCH] Add NeedTanResponse suppport for holdings (blindly) --- fints/client.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/fints/client.py b/fints/client.py index 5713a39..612559f 100644 --- a/fints/client.py +++ b/fints/client.py @@ -645,6 +645,9 @@ class FinTS3Client: 'HIWPD' ) + if isinstance(responses, NeedTANResponse): + return responses + holdings = [] for resp in responses: if type(resp.holdings) == bytes: -- 2.39.5