Merge branch 'fix/issue-401' into feature/any-all-filtering

This commit is contained in:
Michael Shamoon
2021-01-21 14:29:31 -08:00
20 changed files with 215 additions and 150 deletions

View File

@@ -63,12 +63,6 @@ class MatchingModel(models.Model):
def __str__(self):
return self.name
def save(self, *args, **kwargs):
self.match = self.match.lower()
models.Model.save(self, *args, **kwargs)
class Correspondent(MatchingModel):