DanCardin

Results 64 issues of DanCardin

I noticed the use of app_dirs in the config handling which appears to use `$HOME/Library/Application Support/nu`, which is very much not what I'd want for non-gui applications. Most cli tools...

enhancement
configuration

### Description The type annotation for AutogenContext.metadata is currently `Optional[MetaData]`, but `target_metadata` is `Union[MetaData, Sequence[MetaData], None]`. Seems like setting `target_metadata` to `[]` directly translates into the list that `AutogenContext` receives,...

Please answer these questions before submitting your pull requests. Thanks! 1. What GitHub issue is this PR addressing? Make sure that there is an accompanying issue to your PR. It...

Note, this could **potentially** reveal preexisting issues in code under test, that could be perceived as a "breaking" change. By deleting the database under test at the end of the...

Attempts to fix https://github.com/plasma-umass/slipcover/issues/26 I integrated the regex matching into the line-inclusion loop (Thus it works by excluding excluded lines from the total set), but it occurred to me afterwards,...

Perhaps something like ```python @command(subcommands=[a, b]) def function(): ... def a(): ... def b(): ... ``` A syntax like this is essentially forced, given the lack of a real, namable...

Fixes https://github.com/DanCardin/cappa/pull/238 Move Resolved handling backwards into the mapping phase, which should allow for async functions integrated into * defaults * maybe completions * possibly parsing We should also add...

Right now "functional" declaration internally creates stub dataclasses to use downstream to contruct Command instances, because the way invoked subcommands work internally traverses the output shape to find subcommand instances....