summaryrefslogtreecommitdiff
path: root/lorrycontroller/__init__.py
diff options
context:
space:
mode:
authorBen Brown <ben.brown@codethink.co.uk>2020-08-12 13:49:28 +0000
committerBen Brown <ben.brown@codethink.co.uk>2020-08-12 13:49:28 +0000
commit94467c00118efb40cb799ff12030edecc9cae827 (patch)
tree01fc18bed1c87e4cba21ee777a7febbc7315b404 /lorrycontroller/__init__.py
parentccb96f728b11bf3f7c14b9752286e679d850d92f (diff)
parentdd13e9e08489b38548b11ce12eb8d59d2602fab6 (diff)
downloadlorry-controller-94467c00118efb40cb799ff12030edecc9cae827.tar.gz
Merge branch 'bwh/pyflakes' into 'master'
Fix pyflakes errors and warnings; add it to CI configuration See merge request CodethinkLabs/lorry/lorry-controller!22
Diffstat (limited to 'lorrycontroller/__init__.py')
-rw-r--r--lorrycontroller/__init__.py33
1 files changed, 32 insertions, 1 deletions
diff --git a/lorrycontroller/__init__.py b/lorrycontroller/__init__.py
index e1128ae..b2510dc 100644
--- a/lorrycontroller/__init__.py
+++ b/lorrycontroller/__init__.py
@@ -65,4 +65,35 @@ def get_upstream_host(host_info):
return upstream_types[host_info['type']](host_info)
-__all__ = locals()
+__all__ = [
+ 'StateDB',
+ 'LorryNotFoundError', 'WrongNumberLorriesRunningJob', 'HostNotFoundError',
+ 'LorryControllerRoute',
+ 'ReadConfiguration',
+ 'Status', 'StatusHTML', 'StatusRenderer',
+ 'ListQueue',
+ 'ShowLorry', 'ShowLorryHTML',
+ 'StartQueue', 'StopQueue',
+ 'GiveMeJob',
+ 'JobUpdate',
+ 'ListRunningJobs',
+ 'MoveToTop', 'MoveToBottom',
+ 'StopJob',
+ 'ListAllJobs', 'ListAllJobsHTML',
+ 'ShowJob', 'ShowJobHTML', 'JobShower',
+ 'RemoveGhostJobs',
+ 'RemoveJob',
+ 'LsUpstreams', 'ForceLsUpstream',
+ 'PretendTime',
+ 'GetMaxJobs', 'SetMaxJobs',
+ 'StaticFile',
+ 'setup_proxy',
+ 'gerrit',
+ 'gitano',
+ 'gitea',
+ 'gitlab',
+ 'local',
+ 'downstream_types',
+ 'upstream_types',
+ 'get_upstream_host',
+]