Ben Weisburd
Ben Weisburd
A pull request with tests would be appreciated.
I'm not sure I understand the issue. If I run test.py ``` import configargparse p = configargparse.ArgumentParser(description='Just one sentence to describe my utility') p.add_arg("test") p.parse_args() ``` python3 test.py --help It...
ok, how about adding an ArgParser constructor option to customize the config file-related help text - for example a `config_global_help_message` arg below https://github.com/bw2/ConfigArgParse/blob/master/configargparse.py#L387 and it would be set to None...
I like the idea of moving the text to the end of the help output. Would either of you guys be willing to submit a PR for this?
@dbrnz 's PR is now merged. Will wait a couple days to see if PR #210 gets fixed, then make a new release.
That's a bug. A PR to fix this would be appreciated.
Sorry I think this functionality is too complicated for the main configargparse repo.
There isn't currently a way to do this.
What version of configargparse do you have installed? The latest version (v1.4.1) supports `ignore_help_args`: ``` ~$ python3 -m pip freeze | grep Config ConfigArgParse==1.4.1 ~$ ipython3 Python 3.7.10 (default, Apr...
If you're still getting the error after uninstalling / reinstalling configargparse, please post your exact python version, and code snippet for reproducing the issue.