Skip to content
Snippets Groups Projects
Commit fde28dfc authored by Tiago de Freitas Pereira's avatar Tiago de Freitas Pereira
Browse files

moved VALID_DASK_CLIENT_STRINGS to bob.pipelines

parent b1ccc773
No related branches found
No related tags found
1 merge request!55Moved VALID_DASK_CLIENT_STRINGS to bob.pipelines
Pipeline #46362 passed
......@@ -2,3 +2,17 @@
from pkgutil import extend_path
__path__ = extend_path(__path__, __name__)
# DASK-click VALID_DASK_CLIENT_STRINGS
# TO BE USED IN:
# @click.option(
# "--dask-client",
# "-l",
# entry_point_group="dask.client",
# string_exceptions=VALID_DASK_CLIENT_STRINGS,
# default="single-threaded",
# help="Dask client for the execution of the pipeline.",
# cls=ResourceOption,
# )
VALID_DASK_CLIENT_STRINGS = ("single-threaded", "sync", "threaded", "processes")
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment