Daniel Reeves
Daniel Reeves
Thank you for that, and thank you for your patience on this relatively small change that I managed to bork. I see what the issue is, I accidentally did this:...
🤦 Ahhh.
Hm, I guess we need to type: ignore the dbt.clients.agate_helper library? 🤨
Help for arguments is something I'm thinking about for 1.9. I'm personally open to it. If you'd like to take it on then that works.
Hi @alexanderilyin, Via #255, `help_to_stderr` can now be set like this: ```python @click.command(context_settings={"help_to_stderr": True}) def cli() -> None: """CLI help text""" ``` After many internal refactors, it just doesn't really...
@tiangolo There is still one additional performance improvement missing, not on CLI execution but for CLI help text rendering. Specifically-- lazy-loading `from rich.markdown import Markdown` significantly improve performance of help...
Interesting idea and good find. I think it can be considered in-scope. It should be possible with something like, patching `Prompt.ask` with `partialmethod(..., stream=stream)` where `stream = io.StringIO(input)`. Not something...
Hi @cpalau. Just posting to acknowledge I see your issue! I'm on the busy side for the next couple days and I'll be able to look more into this either...
Hello @cpalau, sorry to get back so late. The newline behavior is deliberate; see #49 for more discussion. I believe the intent was to mimic general markdown behavior. The way...
Yep, I understand this is a requested feature. I also think getting APIs correct to begin with is _really_ important; adding things to an API is easy, deleting or modifying...