~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/registry/browser/nameblacklist.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
    )
20
20
from zope.interface import implements
21
21
 
 
22
from lp.app.browser.launchpadform import (
 
23
    custom_widget,
 
24
    LaunchpadFormView,
 
25
    )
 
26
from lp.registry.browser import RegistryEditFormView
 
27
from lp.registry.interfaces.nameblacklist import (
 
28
    INameBlacklist,
 
29
    INameBlacklistSet,
 
30
    )
22
31
from lp.services.webapp import action
23
32
from lp.services.webapp.breadcrumb import Breadcrumb
24
33
from lp.services.webapp.interfaces import IBreadcrumb
33
42
    LaunchpadView,
34
43
    Navigation,
35
44
    )
36
 
from lp.app.browser.launchpadform import (
37
 
    custom_widget,
38
 
    LaunchpadFormView,
39
 
    )
40
 
from lp.registry.browser import RegistryEditFormView
41
 
from lp.registry.interfaces.nameblacklist import (
42
 
    INameBlacklist,
43
 
    INameBlacklistSet,
44
 
    )
45
45
 
46
46
 
47
47
class NameBlacklistValidationMixin: