~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/app/browser/multistep.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:
16
16
from zope.schema import TextLine
17
17
 
18
18
from lp import _
19
 
from lp.services.webapp import (
20
 
    canonical_url,
21
 
    LaunchpadView,
22
 
    )
23
19
from lp.app.browser.launchpadform import (
24
20
    action,
25
21
    custom_widget,
26
22
    LaunchpadFormView,
27
23
    )
 
24
from lp.services.webapp import (
 
25
    canonical_url,
 
26
    LaunchpadView,
 
27
    )
28
28
 
29
29
 
30
30
class _IStepMachinery(Interface):