From 8883e4b73fe955ec03b9812884254996280c1f79 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Henryk=20Pl=C3=B6tz?= Date: Sat, 8 Jun 2019 16:41:21 +0200 Subject: [PATCH] Update formals.py Set properties of SupportedMessageTypes to match the spec (max_length, max_count, required) --- fints/formals.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/fints/formals.py b/fints/formals.py index 2bd5548..cde95f6 100644 --- a/fints/formals.py +++ b/fints/formals.py @@ -960,5 +960,4 @@ class SupportedMessageTypes(DataElementGroup): Source: Messages - Multibankfähige Geschäftsvorfälle (SEPA) - C.2.3.1.1.1 """ - expected_type = AlphanumericField(_d='Unterstützte camt-messages') - # TODO: Support passing an arbitrary number of values here + expected_type = AlphanumericField(max_length=256, max_count=99, required=True, _d='Unterstützte camt-messages') -- 2.39.5