From 4a52d346f995a084c9ea4196cf863d94eec3ba4a Mon Sep 17 00:00:00 2001 From: jonaswinkler <17569239+jonaswinkler@users.noreply.github.com> Date: Wed, 19 May 2021 19:55:35 +0200 Subject: [PATCH] remove dead code --- src/documents/models.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/documents/models.py b/src/documents/models.py index cdd35a2f7..2a763c602 100644 --- a/src/documents/models.py +++ b/src/documents/models.py @@ -65,10 +65,6 @@ class MatchingModel(models.Model): class Correspondent(MatchingModel): - # This regex is probably more restrictive than it needs to be, but it's - # better safe than sorry. - SAFE_REGEX = re.compile(r"^[\w\- ,.']+$") - class Meta: ordering = ("name",) verbose_name = _("correspondent")