fix: remove debug statement

This commit is contained in:
2025-11-03 18:24:45 +01:00
parent d4c7caa42d
commit 99bfe460ee

View File

@@ -419,7 +419,6 @@ class AdoptionNotice(models.Model):
@property
def num_per_sex(self):
print(f"{self.pk} x")
num_per_sex = dict()
for sex in SexChoices:
num_per_sex[sex] = len([animal for animal in self.animals if animal.sex == sex])