~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/registry/browser/karma.py

  • Committer: Launchpad Patch Queue Manager
  • Date: 2012-01-01 11:37:40 UTC
  • mfrom: (14612.2.10 oh-god-so-many-imports)
  • Revision ID: launchpad@pqm.canonical.com-20120101113740-o241xl1m2njr25qn
[r=wgrant][no-qa] Post-apocalyptic tree-wide format-imports.

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
from zope.component import getUtility
15
15
 
16
16
from lp import _
17
 
from lp.services.webapp import (
18
 
    action,
19
 
    canonical_url,
20
 
    LaunchpadEditFormView,
21
 
    LaunchpadView,
22
 
    Navigation,
23
 
    )
24
17
from lp.registry.interfaces.distribution import IDistribution
25
18
from lp.registry.interfaces.karma import (
26
19
    IKarmaAction,
29
22
from lp.registry.interfaces.product import IProduct
30
23
from lp.registry.interfaces.projectgroup import IProjectGroup
31
24
from lp.services.propertycache import cachedproperty
 
25
from lp.services.webapp import (
 
26
    action,
 
27
    canonical_url,
 
28
    LaunchpadEditFormView,
 
29
    LaunchpadView,
 
30
    Navigation,
 
31
    )
32
32
 
33
33
 
34
34
TOP_CONTRIBUTORS_LIMIT = 20