Skip to content
Snippets Groups Projects
Commit 35733412 authored by John Chilton's avatar John Chilton
Browse files

Fix broken __all__ singleton tuples created in 93ab8a13.

parent 93ab8a13
No related branches found
No related tags found
No related merge requests found
......@@ -100,4 +100,4 @@ class PathMapper(object):
raise Exception(message)
__all__ = ('PathMapper')
__all__ = ('PathMapper',)
......@@ -174,4 +174,4 @@ def _clean(collection_failure_exceptions, cleanup_job, client):
log.warn("Failed to cleanup remote Pulsar job")
__all__ = ('finish_job')
__all__ = ('finish_job',)
......@@ -78,4 +78,4 @@ class BaseDrmaaManager(ExternalBaseManager):
return attributes
__all__ = ("BaseDrmaaManager")
__all__ = ("BaseDrmaaManager",)
......@@ -70,4 +70,4 @@ def __pulsar_outputs(job_directory):
)
__all__ = ('postprocess')
__all__ = ('postprocess',)
......@@ -17,4 +17,4 @@ def preprocess(job_directory, setup_actions, action_executor):
action_executor.execute(lambda: action.write_to_path(path), "action[%s]" % description)
__all__ = ('preprocess')
__all__ = ('preprocess',)
......@@ -306,4 +306,4 @@ def new_thread_for_manager(manager, name, target, daemon):
return thread
__all__ = ('StatefulManagerProxy')
__all__ = ('StatefulManagerProxy',)
......@@ -88,4 +88,4 @@ def get_authorizer(toolbox):
return authorizer
__all__ = ('get_authorizer')
__all__ = ('get_authorizer',)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment