launchpad-reviewers team mailing list archive
-
launchpad-reviewers team
-
Mailing list archive
-
Message #27003
[Merge] ~cjwatson/launchpad:remove-duplicate-snap-subscribers into launchpad:master
Colin Watson has proposed merging ~cjwatson/launchpad:remove-duplicate-snap-subscribers into launchpad:master.
Commit message:
Remove duplicate Snap.subscribers definition
Requested reviews:
Launchpad code reviewers (launchpad-reviewers)
For more details, see:
https://code.launchpad.net/~cjwatson/launchpad/+git/launchpad/+merge/402247
There were two identical definitions of this method, perhaps as a result of a rebase at some point.
--
Your team Launchpad code reviewers is requested to review the proposed merge of ~cjwatson/launchpad:remove-duplicate-snap-subscribers into launchpad:master.
diff --git a/lib/lp/snappy/model/snap.py b/lib/lp/snappy/model/snap.py
index 58dc398..1a108b0 100644
--- a/lib/lp/snappy/model/snap.py
+++ b/lib/lp/snappy/model/snap.py
@@ -1187,13 +1187,6 @@ class Snap(Storm, WebhookTargetMixin):
person.is_team and
person.anyone_can_join())
- @property
- def subscribers(self):
- return Store.of(self).find(
- Person,
- SnapSubscription.person_id == Person.id,
- SnapSubscription.snap == self)
-
def subscribe(self, person, subscribed_by, ignore_permissions=False):
"""See `ISnap`."""
if not self.userCanBeSubscribed(person):