Run the dask command line interface.
()
| 199 | |
| 200 | |
| 201 | def run_cli(): |
| 202 | """Run the dask command line interface.""" |
| 203 | |
| 204 | # discover "dask_cli" entry points and try to register them to the |
| 205 | # top level `cli`. |
| 206 | for ep in importlib_metadata.entry_points(group="dask_cli"): |
| 207 | _register_command_ep(cli, ep) |
| 208 | |
| 209 | cli() |
no test coverage detected