From 3ba759e5d166f65839021aa0b30da156dbc49add Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Barrag=C3=A1n=20Merino?= Date: Wed, 25 Nov 2015 17:13:35 +0100 Subject: [PATCH] Remove duplicate code --- taiga/projects/models.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/taiga/projects/models.py b/taiga/projects/models.py index d7f77a10..1d96dd75 100644 --- a/taiga/projects/models.py +++ b/taiga/projects/models.py @@ -275,10 +275,6 @@ class Project(ProjectDefaults, TaggedMixin, models.Model): def project(self): return self - @property - def project(self): - return self - def _get_q_watchers(self): return Q(notify_policies__project_id=self.id) & ~Q(notify_policies__notify_level=NotifyLevel.none)