Wenn I run my script without a necessary subcommand, docopt-ng issues a warning - shouldn't it be an error? - which in my opinion is not suitable for the enduser (found unmatched (duplicate?) arguments [Argument(None, '...')].
Even I as the script writer, don't know what that exactly means. It looks to me like docopt-ng exposes internals from the parsing process which should not be given to the script user.
> python interpreter.py '.\10. PowerShell.ps1'
Warning: found unmatched (duplicate?) arguments [Argument(None, '.\\10. PowerShell.ps1')]
Usage:
interpreter.py run <script> [-- <script_option> ...]
interpreter.py doc [-s <text>] <script>
Wenn I run my script without a necessary subcommand,
docopt-ngissues a warning - shouldn't it be an error? - which in my opinion is not suitable for the enduser (found unmatched (duplicate?) arguments [Argument(None, '...')].Even I as the script writer, don't know what that exactly means. It looks to me like
docopt-ngexposes internals from the parsing process which should not be given to the script user.