~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/answers/interfaces/questionsperson.py

  • Committer: Launchpad Patch Queue Manager
  • Date: 2011-12-20 04:38:42 UTC
  • mfrom: (14550.1.2 refactor-imports-redux)
  • Revision ID: launchpad@pqm.canonical.com-20111220043842-5djlrud7wls7cqex
[r=stevenk][no-qa] Re-run format-imports over lib/lp and
 lib/canonical/launchpad.

Show diffs side-by-side

added added

removed removed

Lines of Context:
8
8
    'IQuestionsPerson',
9
9
    ]
10
10
 
 
11
from lazr.restful.declarations import (
 
12
    export_read_operation,
 
13
    operation_for_version,
 
14
    operation_parameters,
 
15
    operation_returns_collection_of,
 
16
    )
 
17
from lazr.restful.fields import ReferenceChoice
11
18
from zope.interface import Interface
12
19
from zope.schema import (
13
20
    Bool,
16
23
    TextLine,
17
24
    )
18
25
 
19
 
from lazr.restful.declarations import (
20
 
    export_read_operation,
21
 
    operation_for_version,
22
 
    operation_parameters,
23
 
    operation_returns_collection_of,
24
 
    )
25
 
from lazr.restful.fields import ReferenceChoice
26
 
 
27
26
from canonical.launchpad import _
28
27
from lp.answers.enums import (
 
28
    QUESTION_STATUS_DEFAULT_SEARCH,
29
29
    QuestionParticipation,
30
30
    QuestionSort,
31
31
    QuestionStatus,
32
 
    QUESTION_STATUS_DEFAULT_SEARCH,
33
32
    )
34
33
from lp.answers.interfaces.questioncollection import IQuestionCollection
35
34