~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/services/features/rulesource.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:
20
20
 
21
21
from storm.locals import Desc
22
22
 
23
 
from lp.services.webapp import adapter
24
23
from lp.services.features.model import (
25
24
    FeatureFlag,
26
25
    getFeatureStore,
27
26
    )
 
27
from lp.services.webapp import adapter
28
28
 
29
29
# A convenient mapping for a feature flag rule in the database.
30
30
Rule = namedtuple("Rule", "flag scope priority value")