From 21013a7935bff699762bfda2a3507add2dfb9207 Mon Sep 17 00:00:00 2001 From: Terrtia Date: Wed, 4 Sep 2019 17:08:28 +0200 Subject: [PATCH] fix: [BankAccount] fix #385 --- bin/BankAccount.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/bin/BankAccount.py b/bin/BankAccount.py index cd58e3c3..16a8a11f 100755 --- a/bin/BankAccount.py +++ b/bin/BankAccount.py @@ -92,8 +92,6 @@ if __name__ == "__main__": publisher.info("BankAccount started") - message = p.get_from_set() - #iban_regex = re.compile(r'\b[A-Za-z]{2}[0-9]{2}(?:[ ]?[0-9]{4}){4}(?:[ ]?[0-9]{1,2})?\b') iban_regex = re.compile(r'\b([A-Za-z]{2}[ \-]?[0-9]{2})(?=(?:[ \-]?[A-Za-z0-9]){9,30})((?:[ \-]?[A-Za-z0-9]{3,5}){2,6})([ \-]?[A-Za-z0-9]{1,3})\b') iban_regex_verify = re.compile(r'^([A-Z]{2})([0-9]{2})([A-Z0-9]{9,30})$')