Daniel Reeves
Daniel Reeves
Hope this one isn't too late, since this would be pretty easy to add. I'll try to get it out before 1.8.0 officially releases.
Ah it gets worse. `celery beat --help`: ``` Usage: celery beat [OPTIONS] Start the beat periodic task scheduler. Beat Options: --detach Detach and run in the background as a daemon....
Figured out what's going on pretty quickly with the subcommand and I'll have a fix for that, but the main command I will have to dig into.
Ahhh, figured it out. TLDR, this is a bug in 1.8.0dev, and it arises due to the order of how Click stuff is loaded now with the lazy-loading. This is...
There is a more interesting discussion here to be had eventually about how rich-click should support common click extensions (one I am personally fond of being [click-didyoumean](https://github.com/click-contrib/click-didyoumean)). I think, ideally,...
Oh no, this can't go out for 1.8. The `rich-rst` library has some issues that make it not play nicely with what we're doing. I will have to reach out...
`rich-rst` was fixed last I checked, and it can be something we support as an optional dependency, so should be straightforward as a 1.9 or even 1.8.x roadmap feature.
One reason I want to add this in a `1.9` is because I like having a lot of fun and exciting features bundled together. It would be quite easy to...
@allenporter I understand that Pydantic 2.0 migration is annoying, but I use this library mainly to serialize `ics` files to JSON so I can dump it into a database. 😄...
The way to do that right now without needing to wait on us would be something like this: ```python import rich_click as click class CustomRichGroup(click.RichGroup): def format_options(self, ctx, formatter) ->...