Is there a way to allow argparse to accept arbitrary flags?
For example, I have a wrapper over git push called gitter
I would prefer to not have to specify all the flags available to git push as there are many.
However, I still want to be able to do something like
gitter --all --no-verify Is there a way for argparse to take arbitrary flags and have those flags be passed onto git push?
If I do gitter --fake-flag, I immediately get an error without the chance of parsing out the flags.