remove dead code

This commit is contained in:
jonaswinkler 2021-05-19 19:55:35 +02:00
parent 3f33f66387
commit 4a52d346f9

View File

@ -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")