~launchpad-results/launchpad-results/trunk

« back to all changes in this revision

Viewing changes to lib/lpresults/registry/interfaces/team.py

  • Committer: Marc Tardif
  • Date: 2012-03-21 22:32:04 UTC
  • Revision ID: marc.tardif@canonical.com-20120321223204-8g7mvzzwmh8ifbrt
Added support for getting systems from a person (LP #899361)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright 2010-2011 Canonical Ltd.  This software is licensed under the
 
2
# GNU Affero General Public License version 3 (see the file LICENSE).
 
3
 
 
4
__metaclass__ = type
 
5
 
 
6
__all__ = [
 
7
    "ITeam",
 
8
    ]
 
9
 
 
10
from lpresults.registry.interfaces.person import IPerson
 
11
 
 
12
 
 
13
class ITeam(IPerson):
 
14
    """A Team.
 
15
 
 
16
    This maps to the concept of team in the Launchpad Registry.
 
17
    """