diff --git a/src/fellchensammlung/models.py b/src/fellchensammlung/models.py index 4105422..2527852 100644 --- a/src/fellchensammlung/models.py +++ b/src/fellchensammlung/models.py @@ -240,7 +240,7 @@ class AdoptionNotice(models.Model): def sexes(self): sexes = set() for animal in self.animals: - sexes.update(animal.sex) + sexes.add(animal.sex) return sexes def sex_code(self):