~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/registry/browser/peoplemerge.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:
19
19
from zope.security.proxy import removeSecurityProxy
20
20
 
21
21
from lp import _
22
 
from lp.services.verification.interfaces.authtoken import LoginTokenType
23
 
from lp.services.verification.interfaces.logintoken import ILoginTokenSet
24
 
from lp.services.database.lpstorm import IMasterObject
25
 
from lp.services.webapp import (
26
 
    canonical_url,
27
 
    LaunchpadView,
28
 
    )
29
 
from lp.services.webapp.interfaces import ILaunchBag
30
22
from lp.app.browser.launchpadform import (
31
23
    action,
32
24
    LaunchpadFormView,
42
34
    IPersonSet,
43
35
    IRequestPeopleMerge,
44
36
    )
 
37
from lp.services.database.lpstorm import IMasterObject
45
38
from lp.services.identity.interfaces.emailaddress import (
46
39
    EmailAddressStatus,
47
40
    IEmailAddressSet,
48
41
    )
49
42
from lp.services.propertycache import cachedproperty
 
43
from lp.services.verification.interfaces.authtoken import LoginTokenType
 
44
from lp.services.verification.interfaces.logintoken import ILoginTokenSet
 
45
from lp.services.webapp import (
 
46
    canonical_url,
 
47
    LaunchpadView,
 
48
    )
 
49
from lp.services.webapp.interfaces import ILaunchBag
50
50
from lp.soyuz.enums import ArchiveStatus
51
51
from lp.soyuz.interfaces.archive import IArchiveSet
52
52