From 75ffab97a038aaa19e0108297040336ddbabdba8 Mon Sep 17 00:00:00 2001 From: Jakub Dylag <jjd1c23@soton.ac.uk> Date: Fri, 4 Apr 2025 05:50:17 +0100 Subject: [PATCH] (bug) parse.py unknown check_regex param --- acmc/parse.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/acmc/parse.py b/acmc/parse.py index bf3f79e..8a364e5 100644 --- a/acmc/parse.py +++ b/acmc/parse.py @@ -231,7 +231,7 @@ class Read3(Proto): f"QA Alphanumeric Dot", codes=codes, codes_file=codes_file, - check_regex=codes.str.match(r"^[a-zA-Z0-9.]+$"), + mask=None, code_type=self.name, ) ) @@ -246,7 +246,7 @@ class Read3(Proto): f"QA In Database", codes=codes, codes_file=codes_file, - check_regex=self.in_database(codes, self.db, self.name), + mask=None, code_type=self.name, ) ) -- GitLab