~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/code/model/revisioncache.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:
22
22
from zope.component import getUtility
23
23
from zope.interface import implements
24
24
 
25
 
from lp.services.webapp.interfaces import (
26
 
    DEFAULT_FLAVOR,
27
 
    IStoreSelector,
28
 
    MAIN_STORE,
29
 
    )
30
25
from lp.code.interfaces.revisioncache import IRevisionCollection
31
26
from lp.code.model.revision import (
32
27
    Revision,
36
31
from lp.registry.model.distroseries import DistroSeries
37
32
from lp.registry.model.product import Product
38
33
from lp.registry.model.teammembership import TeamParticipation
 
34
from lp.services.webapp.interfaces import (
 
35
    DEFAULT_FLAVOR,
 
36
    IStoreSelector,
 
37
    MAIN_STORE,
 
38
    )
39
39
 
40
40
 
41
41
class GenericRevisionCollection: