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