Jan Rüegg
Jan Rüegg
The reason is that `realpath` only works on existing files... so if I want to get the absolute path of a file or directory I'm about to create, it will...
When trying to open a file, I get this error: GET /play/?path=...&subtitle=&start=0 500 4.088 ms - 1075 TypeError: options argument must be an object at normalizeSpawnArguments (child_process.js:968:11) at Object.exports.spawn (child_process.js:991:38)...
**Feature request** Make it possible to define a maximum line length, and automatically wrap lines which are too long, or combine short enough lines, similar to what clang-format does for...
When running 1000 jobs, and 500 of them fail, it would be useful to have the failures grouped by stack trace or error type / error message. Looking through each...
I just spent hours trying to find out why my function didn't get cached when using `@memory.cache`. It turns out the reason was that the function returned an object where...
Having a boolean option with a default value of `True`: ``` from dataclasses import dataclass from simple_parsing import ArgumentParser @dataclass class Args: enable_water: bool = True # Do you want...
In the example here: https://github.com/lebrice/SimpleParsing/tree/master/examples/enums Calling `args = parser.parse_args(["--help"])` gives: ` --color Color my favorite colour (default: BLUE)` It would be nice to get a list of possible choices here,...
Optional enums need to be passed to command line by value instead of name: ``` import enum from dataclasses import dataclass from typing import Optional from simple_parsing import ArgumentParser parser...
When using `from __future__ import annotations` at the top of any of the examples, `SimpleParsing` crashes with: ``` ... File "/Users/jrueegg/miniconda/envs/shrek/lib/python3.7/site-packages/simple_parsing/parsing.py", line 221, in _preprocessing wrapper.add_arguments(parser=self) File "/Users/jrueegg/miniconda/envs/shrek/lib/python3.7/site-packages/simple_parsing/wrappers/dataclass_wrapper.py", line 103,...