Louis Maddox

Results 158 comments of Louis Maddox

This seems to defeat the entire purpose of the `--fill` flag. Weirdly I swear this was working for me last week, but now I am prompted every time. Extremely annoying...

No this is still an open issue, I subscribed to it recently...

Ah cool, I'm working on introducing `keyring` which supports Windows Credential Locker. Microsoft Azure KeyVault is a cloud service more like AWS SSM, the `keyring` library is local (its repo...

Likewise, I've got: - vim version 8.0 (`vim-nox`, built with Python 3 support: `+python3/dyn`) - Python version 3.7 - Black version version 19.3b0 - OS: Linux Ubuntu - Installed using...

Sure thing I will add it to my development kanban: Xmas break came and went without a chance for this ! Busy for next week then can sprint on this

## TODO list - [x] pip compile - [ ] Optional dependency import - [ ] Settings source edit - [ ] raise `SettingsError` upon keyring variable access error -...

I thought about the way pydantic is importing optional dependencies and as I recalled seeing a cleaner way in pandas, I reviewed their approach, `import_optional_dependency`. [source](https://github.com/pandas-dev/pandas/blob/e92ea577ccce3ae8cc7da2baba44d72854f4947f/pandas/compat/_optional.py#L92) -> [example usage](https://github.com/pandas-dev/pandas/blob/e92ea577ccce3ae8cc7da2baba44d72854f4947f/pandas/io/formats/style_render.py#L48) The...

Not on Linux (Mint) unfortunately

To test the function we need to be able to simulate `head` in a platform generic way (so we can't just call `subprocess` to invoke `head`). Here are some utility...

To edit these tests for rich, we can just pass in a console and use its print statement instead. > `pytest_rich_pipe_utils.py` ```py import errno import os import sys import threading...