Louis Maddox

Results 158 comments of Louis Maddox

I note the following difference, I think I read somewhere that you use `search` to extract the groups so perhaps here is where I ought make the change ```py >>>...

On closer review it looks like the culprit is `parse.convert_first`. Here is the breakpoint debugged process that occurs in `evaluate_result` where the `None` is produced from `convert_first` which is stored...

Update: here is the implementation I ended up with for reference, I found this quite involved but it appears to be robust. I think this might constitute a candidate for...

It's a fun one isn't it! In my case, I decided to handle the transitive dependency exclusion in my package with PDM [resolution overrides](https://pdm-project.org/latest/usage/config/#exclude-specific-packages-and-their-dependencies-from-the-lock-file) - [Commit](https://github.com/lmmx/tubeulator/pull/33/commits/6d94c8e912c45481bc65ab4bdb50c6c52ffe5c13) - [Pyproject.toml](https://github.com/lmmx/tubeulator/blob/6d94c8e912c45481bc65ab4bdb50c6c52ffe5c13/pyproject.toml) (with polars...

Hey @thomasaarholt, nice work! No, `pt.read_csv` exists because `pl.read_csv` infers schema dtypes, whereas with Patito we always want to proactively define the dtypes in the data model. The docstring mentioning...

It looks like this is resolved now? - https://github.com/JakobGM/patito/issues/49

To state the obvious for anyone who hadn't thought of it, simply deactivating your env is one way (if you're just building/running cargo tests)

Note that this can occur when installing via symlink vs. via `cargo install --locked --path hx-term` (momentarily confused me, as indeed there is no helpful message, when I went to...

I ran into this when trying to test the config on trunk with my local install, by simply saving the trunk `languages.toml` in my `~/.config/helix`. I note that the diagnostic...

Links: ([cuallee](https://github.com/canimus/cuallee) / [docs](https://canimus.github.io/cuallee/)) Is there anything in particular you had in mind from it for Patito? At a glance it looks like: - Introducing the concept of warnings (Pydantic...