~larryprice/libertine/better-db-locking

« back to all changes in this revision

Viewing changes to python/libertine/service/tasks/__init__.py

  • Committer: Larry Price
  • Date: 2017-02-08 15:58:51 UTC
  • mfrom: (388.2.6 devel)
  • Revision ID: larry.price@canonical.com-20170208155851-zopfjh3x3q6cseuz
merge

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
from .search_task import SearchTask
23
23
from .update_task import UpdateTask
24
24
from .list_task import ListTask
25
 
from .list_apps_task import ListAppsTask
26
25
from .list_app_ids_task import ListAppIdsTask
27
26
 
28
27
__all__ = [
36
35
          'SearchTask',
37
36
          'UpdateTask',
38
37
          'ListTask',
39
 
          'ListAppsTask',
40
38
          'ListAppIdsTask'
41
39
          ]