From 99bfe460eefc65148787ef78e655f14b4a34054b Mon Sep 17 00:00:00 2001 From: moanos Date: Mon, 3 Nov 2025 18:24:45 +0100 Subject: [PATCH] fix: remove debug statement --- src/fellchensammlung/models.py | 1 - 1 file changed, 1 deletion(-) diff --git a/src/fellchensammlung/models.py b/src/fellchensammlung/models.py index 729c651..68f889e 100644 --- a/src/fellchensammlung/models.py +++ b/src/fellchensammlung/models.py @@ -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])