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