diff --git a/lego/apps/lending/models.py b/lego/apps/lending/models.py index 827d5b935..15162c1d8 100644 --- a/lego/apps/lending/models.py +++ b/lego/apps/lending/models.py @@ -65,8 +65,6 @@ class LendingInstanceStatus(models.TextChoices): message = models.TextField(null=False, blank=True) - objects = LendingInstanceManager() - @property def active(self): return timezone.now() < self.end_date and timezone.now() > self.start_date