E447
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Email regex does not match user.name-secondname@domain.com oder an other Adresse with valid "-" before @
It should be
def _is_email(self, email): pattern = r'[\-\.\w]+@[-\.\w]+\.\w+' if re.fullmatch(pattern, email): return True