Vagiz Duseev
Vagiz Duseev
Hi @ludbek, First of all, thank you for the wonderful library. Many people have been using it in production, reasearch, and home projects for years now. ## Reason I took...
Fixes jruizgit/rules#352
Links point to the incorrect location, e.g. ```markdown * [Python](https://github.com/jruizgit/rules/blob/testpy/manners.py) ``` instead of ```markdown * [Python](https://github.com/jruizgit/rules/blob/master/testpy/manners.py) ``` which leads users to 404 page.
## Summary Add `choices` parameter to `argument` and `option` functions to accept list of allowed values for an argument or an option. Reject any values that do not match the...
## Summary When we try to render a table that does not fit into a screen width (terminal width) a `ValueError` is thrown. ## What happens In the example below...
**Describe the bug** A clear and concise description of what the bug is.
Add a message box with error description when supplied with wrong connection string
## Summary Split lists by space by default. Add list delimiter argument to the `from_env` function. Given: ```shell export WUTCH_DIRS=". ../other_dir" ``` Evaluate to: ```python cfg = from_env(prefix="WUTCH_") assert(cfg.dirs ==...
## Summary Implement template like functionality using Jinja. Given: ```json { "a": "my", "b": "{{ a }}var", "{{ a }}-{{ b }}": ["{{ b }}"] } ``` Should evaluate to:...