Jacob Tomlinson

Results 1322 comments of Jacob Tomlinson

Ok I see the problem with my request then! One solution could be to write an iterator with `__iter__` and `__next__` which iterates through both things and returns a two-tuple...

> Do we want to make click a hard dependency? I don't think we should. I'd be interested to explore how much work it would be to also support existing...

> [Typer apps can be used in Click apps](https://typer.tiangolo.com/tutorial/using-click/#including-a-typer-app-in-a-click-app) Awesome! > Since the existing tools already use Click Not all of them do. Dask Yarn and Dask Gateway both have...

I think the challenge here is dispatching to non-Click modules.

Yeah totally, thanks for the clarification. I think @jcrist was concerned that we would need to update existing CLI tools to work with this. I agree that however this is...

Yeah @jcrist voiced concerns about having to do that, I'm just echoing them here as he might not have time to engage here. Gateway [starts a Traitlets application](https://github.com/dask/dask-gateway/blob/37c4ead0f0c91366d6eea39ee47b6d1cc0ae5793/dask-gateway-server/dask_gateway_server/app.py#L269) from its...

I'm happy with the `dask` command requiring `Click` and the import errors seem totally fine, but maybe we can find a way to do the wrapping here instead of asking...

The `ModuleNotFoundError` errors in your log makes me wonder if your environment isn't quite set up right. Does it have `distributed` installed? ``` * KeyError: 'Client' * KeyError: 'distributed' *...

@scharlottej13 given we pin to `sphinx-book-theme==0.2.0` this should never actually come up, right? So I'm not entirely sure how @kloczek managed to get sphinx 5 installed in this environment, perhaps...

Some more thoughts... I see a lot of confusion coming from `**kwargs` in `Client` being passed to `LocalCluster`. This is the magic that seems to harm understanding in the longer...