~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/code/model/revisioncache.py

  • Committer: William Grant
  • Date: 2012-01-01 02:58:52 UTC
  • mto: This revision was merged to the branch mainline in revision 14614.
  • Revision ID: william.grant@canonical.com-20120101025852-p6ouypk9mzb5usn8
format-imports on lib/. So many 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: