From 472d3495b5cc30b71adb41ebf0ee624edc30b937 Mon Sep 17 00:00:00 2001 From: Clemens Schwaighofer Date: Thu, 17 Jul 2025 13:32:35 +0900 Subject: [PATCH] Add missing typedefs for regex constants --- src/corelibs/check_handling/regex_constants.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/corelibs/check_handling/regex_constants.py b/src/corelibs/check_handling/regex_constants.py index f71603e..aa7fba9 100644 --- a/src/corelibs/check_handling/regex_constants.py +++ b/src/corelibs/check_handling/regex_constants.py @@ -19,19 +19,19 @@ def compile_re(reg: str) -> re.Pattern[str]: # email regex -EMAIL_BASIC_REGEX = r""" +EMAIL_BASIC_REGEX: str = r""" ^[A-Za-z0-9!#$%&'*+\-\/=?^_`{|}~][A-Za-z0-9!#$%:\(\)&'*+\-\/=?^_`{|}~\.]{0,63} @(?!-)[A-Za-z0-9-]{1,63}(?